@charset "utf-8";

/*

    login.css
    Version: 2024.12.01

*/


/* .login
-------------------------------------------------------- */
#login {
    max-width: 640px;
    width: 100%;
}
.login {
    position: relative;
    overflow: auto;
    background: none;
}
.login::before {
    position: fixed;
    right: 0;
    left: 0;
    z-index: -1;
    display: block;
    margin: -2px;
    width: 101%;
    height: 101%;
    background: url(../../assets/img/login/bg_login.jpg) no-repeat center;
    background-size: cover;
    content: "";
    -webkit-filter: blur(2px);
        -ms-filter: blur(2px);
            filter: blur(2px);

       -moz-filter: blur(2px);
         -o-filter: blur(2px);
}
.login h1 a {
    margin: 0 auto;
    padding: 1em 0;
    max-width: 542px;
    width: 100%;
    height: auto;
    height: 42px;
    background: url(../../assets/img/login/logo_login.svg) no-repeat center;
    background-size: contain;
    font-size: 100%;
    line-height: 1;
}

@media (max-width: 480px) {
    .login h1 a {
        width: 80%;
    }
}
.login form {
    margin-top: 10px;
    padding-bottom: 30px;
}
.login form .input {
    padding: 0 8px;
    border: 1px solid #ddd;
    box-shadow: 0 0 2px 2px rgba(200,200,200,.2) inset;
    font-size: 118%;
}
.login form input:focus {
    border: 1px solid #a0d2ff;
    background-color: #fff;
    box-shadow: none;
}
.forgetmenot input {
    margin-right: 0;
    margin-bottom: -2px;
}
.login label {
    color: #333;
    font-weight: bold;
}
.login .button-primary {
    border: none;
    background: #000;
    box-shadow: none;
    text-shadow: none;
    font-weight: bold;
    -webkit-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.login .button-primary:hover,
.login .button-primary:focus,
.login .button-primary:active {
    border: none;
    background: #e72410;
    box-shadow: none;
    -webkit-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.login #nav {
    margin: 20px 0 0;
    padding: 0;
}
.login #nav a {
    display: block;
    padding: 8px 0;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    -webkit-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.login #nav a:hover,
.login #nav a:focus,
.login #nav a:active {
    background: #fff;
    box-shadow: none;
    color: #333;
    -webkit-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.login #backtoblog {
    margin: 10px 0;
    padding: 0;
}
.login #backtoblog a,
.login #backtoblog a:hover,
.login #backtoblog a:focus,
.login #backtoblog a:active {
    box-shadow: none;
    color: #fff;
    font-weight: bold;
    font-size: 90%;
}
.login #login_error,
.login .message {
    margin-top: 10px;
    padding: 12px 15px 10px;
    border-left: 3px solid #e72410;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    font-size: 86%;
}
.login .privacy-policy-link {
    color: #fff;
}
