#dashboard_header {
    display: none !important;
}
.login_template {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}
.login_template .container {
    width: 100%;
    padding: 80px 30px;
}
#dashboard input {
    border: 1px solid #333;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}
.dashboard_forms_holder {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background-color: #fff;
    border-radius: 18px;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #000;
}
.dashboard_register_holder {
    display: none;
}
#dashboard_login label,
#dashboard_register label {
color: #000;
    padding-bottom: 10px;
    display: block;
}
.login_username {
    margin-bottom: 20px;
}
.login_rememberme {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}
.login_rememberme input {
    width: auto !important;
}
#dashboard_login .login_rememberme label {
    padding-bottom: 0;
}
form button[type="submit"] {
    background-color: #e55c13;
    border: none;
    color: #fff;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
}
.login_pass_reset a,
.login_no_account a,
.login_has_account a {
    color: #013b31;
}
.register_email, 
.register_password, 
.register_name, 
.register_surname,
.repeat_password {
    margin-bottom: 20px;
}
.register_password, .repeat_password, .login_password {
    position: relative;
}
.password_toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 3;
}
.password_toggle svg {
    width: 24px;
    height: 24px;
}
.inner_notice {
    padding: 10px;
    border: 1px solid #013b31;
    margin-bottom: 20px;
    color: #000;
    line-height: 1;
}
.loading {
    position: relative;
    overflow: hidden;
}
.loading:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    opacity: 0.8;
}
.loading:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-image: url(/wp-content/themes/cavalieri-di-cultura/assets/css/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
}
