#oze-login,
#oze-404 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #fff;
    overflow: auto;
}

.oze-login-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.oze-login-image {
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000000;
    background-blend-mode: luminosity;
}

#oze-login-wrapper,
#oze-404-wrapper {
	max-width: 500px;
    margin: auto;
	padding: 50px;
    z-index: 999
}

#oze-login p {
    margin-bottom: 1em;
}

#oze-login-title {
    font-size: 32px;
    margin-bottom: 0px;
    font-weight: 600;
}

#oze-login-description {
    font-size: 16px;  
    color: var(--text);
}

#oze-login label {
    font-size: 15px;
    font-weight: 600;
}

#oze-login-logo {
    display: block;    
    margin-bottom: 30px;
}

#oze-login-logo img {
    margin: auto;
    display: block;
    height: 50px;
}

#oze-login input:focus {
    border: 1px solid var(--main);
}

#oze_login_submit {
    _background: #048982;
    height: 42px;
}

.oze-btn-disabled {
     color: transparent !important;
     pointer-events: none !important;
}

.oze-btn-disabled:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.oze-btn-line.oze-btn-disabled:after {
    border-bottom: 2px solid var(--grey);
    border-left: 2px solid var(--grey);
    border-top: 2px solid var(--grey);
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

#oze-login input {
    width: 100% !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

#oze-login-errors:not(:empty) {
    padding: 6px 12px;
    background: #FFF3F3;
    color: #cf2929;
    border: 1px solid #f58b8b;
    border-radius: 4px;
}

#oze-login-errors.success {
    background: #ebfaf1;
    color: #29cf3d;
    border: 1px solid #88fd96;
}

#oze_icon_field {
    position: relative;
}

#oze_icon_field span {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}    

#oze-login-footer-links a {
    text-align: center;
    display: block;
    margin-top: 10px;
    color: var(--text);
}

#oze-login-footer-links a:hover {
    color: var(--main);
}

#oze-login-footer-links u {
    color: var(--main);
}    

#oze-login-footer-terms {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    color: var(--text);
}

#oze-close-login {
    position: absolute;
    right: 30px;
    top: 30px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    width: 35px;
    height: 35px; 
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9999;
}

#oze-close-login:hover {
    background: rgba(0,0,0,0.8);
}    


#oze-404-wrapper {
    text-align: center;
}

#oze-404-title {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
}

#oze-404-text {
    font-size: 16px;  
    color: var(--text);
    text-align: center;    
    margin-bottom: 30px;
}


@media only screen and (max-width: 980px) {
    .oze-login-grid {
        grid-template-columns: 1fr;
    }

    .oze-login-image {
        padding-top: 60%;
    }
}