body {
    background: #333333;
    padding-top: 50px;
}

body:before {
    content: ' ';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    -background: url("/static/web_portal/images/login-bg.jpg") no-repeat center center fixed;
    background-size: cover;
}

h2 {
    color: white;
    text-align: center;
    font-size: 1.5em;
    position: relative;
}

h2 .highlight {
    color: #00e5ff;
    font-weight: bold;
}

#login-form {
    position: absolute;
    top:0;
    left:0;
    right: 0;
    margin: 250px auto;
    width: 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px black;

}

#login-form .login-main-icon {
    font-size: 150px;
    display: block;
    margin: -150px auto 40px;
    width: 190px;
    height: 190px;
    color: #ffffff;
    border-radius: 500px;
    border: 20px solid #333333;
    background: #333333;
    padding: 0;
    text-shadow: 0 10px 20px black;

}

#login-form .mb-3 {
    margin-bottom: 30px;
    padding: 0;
}

#login-form div.icon {
    padding: 20px 10px 5px;
    max-width: 40px;
    background: #e8e8e8;
    margin-bottom: 30px;
    height: 58px;
}


#login-form input {
    border: none;
    background: #f7f7f7;
    border-radius: 0;
    padding: 20px 14px 0;
}

#login-form input:focus,
#login-form input:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
}

.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
    background: none;
}

#loading_overlay {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 0;
    z-index: 99;
    background: #f9dc48;
    padding: 5px 20px;
    border-radius: 5px 0 0 0;
}

/* Footer */
footer {
    background: #333333;
    width: 100%;
    height: 25px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    font-size: 0.7em;
    text-align: center;
}

footer p {
    padding: 5px 10px;
    color: #afafaf;
}

footer a {
    color: #00E5FF;
    text-decoration: none;
}

footer a:hover {
    color: #74ecff;
    text-decoration: none;
}

/* Modal */
#mask-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}
