@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: url('../../image/bg_login.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

hr {
    width: 100%;
    height: 0;
    border: 0;
    border-top: 2px dotted #dddddd;
}

a {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
}

a:hover {
    color: #999999;
}

.login-title {
    width: 90%;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #999;
    padding: 30px 0 20px 0;
}

.login-copy {
    position: fixed;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    bottom: 0;
}

.login-form {
    width: 90%;
    margin-top: 30px;
}

.underline {
    margin: 0;
    border-bottom: 1px solid #90050b;
    padding-bottom: 15px;
    position: relative;
}

.underline:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #90050b;
    width: 25%;
    height: 2px;
}

@media only screen and (max-width: 992px) {
    .login-copy {
        display: none !important;
    }
}