@charset "utf-8";

body.login {
    background: #252525;
}

.login_header {
    background: #000;
    display: flex;
    justify-content: center !important;
    padding: 1rem 1rem 2rem;
}

.login_header img {
    width: 250px;
}

.login_languages {
    text-align: center;
    width: 100%;
    top: -2rem;
    position: relative;
    transition: all .45s ease-in-out;
}

.login_languages img {
    width: 40px;
    margin: 0.5rem;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.51);
    -moz-box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.51);
    box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.51);
    transition: all .45s ease-in-out;
    border:4px solid #252525;
}

.login_languages img:hover {
    transform: rotate(360deg);
}

.login_form_bg {
    display: flex;
    justify-content: center !important;
    top: -2rem;
    position: relative;
}

.login_form_main {
    font-size: 14px;
    width: 300px;
}

.login_form_main table {
    width: 100%;
    color: #fff;
}

.login_form_main input {
    color: #000;
    width: -webkit-fill-available;
}

.login-message,
.password-reset-message {
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 0.8rem;
    padding: 0.65rem 0.75rem;
}

.login-message.success,
.password-reset-message.success {
    background: #e7f6ec;
    color: #176b35;
}

.login-message.error,
.password-reset-message.error {
    background: #fdeaea;
    color: #9c1c1c;
}

.login_form_main .password-reset-link,
.password-reset-login-info .password-reset-link {
    background: transparent;
    border: 0;
    color: #ff600f;
    cursor: pointer;
    display: inline-block;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif !important;
    font-size: 13px;
    margin-top: 0.65rem;
    padding: 0;
    text-decoration: underline;
    width: auto;
}

.login_form_main button[type="submit"] {
    background: #ff600f;
    color: #fff;
    border: 1px solid #ff600f;
    border-radius: 0.2rem;
    padding: 5px;
    width: 100%;
    transition: all .45s ease-in-out;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 14px;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif !important;
}

.login_form_main input[type="button"]:hover {
    background-color: #252525;
    border: 1px solid #252525;
}

a.login{
    font-size:10px;
    background-image:url(images/login.png);
    height:40px;
    width:62px;
    margin-top:20px;
    color:#FFFFFF;
    text-decoration:none;
    float:right;
}

.login p{
    margin-left:15px;
}

a.login_small{
    background:#ff600f;
    padding: 0.5rem 1rem;
    font-size: 14px;
    height: 49px;
    color:#FFFFFF;
    text-decoration:none;
    align-items: center !important;
    display: flex;
    transition: all .45s ease-in-out;
}

@media (max-width: 1160px) {
    a.login_small{
        font-size: 0;
    }
}

a.login_small:hover{
    background: #252525;
}

.login_small p{
    margin:0;
    padding: 0;
    text-wrap: nowrap;
}

.login_small p:before{
    content: url(images/icons/user-logout.svg);
    width: 1.2rem;
    display: inline-block;
    margin-right: 0.2rem;
    margin-bottom: 0.3rem;
    vertical-align: middle;
    transition: all .45s ease-in-out;

}

.login_small:hover p:before{
    transform: rotate(360deg);
}

.password-reset-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.65);
    bottom: 0;
    justify-content: center;
    left: 0;
    padding: 1rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
}

.password-reset-modal-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    color: #1a1a1a;
    max-width: 480px;
    overflow: hidden;
    width: 100%;
}

.password-reset-modal-header {
    align-items: center;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    padding: 1rem 1.25rem;
}

.password-reset-modal-close {
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
}

.password-reset-modal-body {
    padding: 1.25rem;
}

.password-reset-modal-body label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 0.8rem 0 0.25rem;
}

.password-reset-modal-body input[type="email"],
.password-reset-modal-body input[type="password"] {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    box-sizing: border-box;
    color: #000000;
    font-size: 15px;
    padding: 0.6rem 0.7rem;
    width: 100%;
}

.password-reset-altcha {
    margin-top: 1rem;
}

.password-reset-altcha altcha-widget {
    display: block;
    max-width: 100%;
}

.password-reset-button {
    background: #ff600f;
    border: 1px solid #ff600f;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Titillium Web', Arial, Helvetica, sans-serif !important;
    font-size: 14px;
    margin-top: 1rem;
    padding: 0.65rem 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease-in-out;
    width: 100%;
}

.password-reset-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.password-reset-criteria {
    display: grid;
    gap: 0.35rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.password-reset-criteria li {
    align-items: center;
    color: #9c1c1c;
    display: flex;
    font-size: 13px;
    gap: 0.45rem;
}

.password-reset-criteria li::before {
    content: "✕";
    display: inline-block;
    font-weight: 700;
    width: 1rem;
}

.password-reset-criteria li.valid {
    color: #176b35;
}

.password-reset-criteria li.valid::before {
    content: "✓";
}

.password-reset-login-info {
    color: #ffffff;
    text-align: center;
}
