/*
** Auth page
*/
.auth-page {
    position: relative;
    padding: 80px 0 130px;
    width: 100%;
}
.auth-page .row {
    display: flex;
    justify-content: center;
}
.auth-form {
    position: relative;
    width: 100%;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    z-index: 2;
}
.auth-form .logo {
    margin-bottom: 25px;
}
.auth-form .logo img {
    width: 140px;
}
.auth-form h1 {
    margin-bottom: 40px;
    text-align: center;
}
.auth-form .auth-field {
    width: 100%;
    position: relative;
}
.auth-form .auth-field input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(233, 232, 235, 1);
    padding: 12px 10px;
}
.auth-form .auth-field span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.auth-form .auth-field span img {
    width: 25px;
}
.auth-form .auth-action button {
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
    transition: 0.5s;
}
.auth-form .auth-forgot a {
    color: #141414;
    text-decoration: none;
    border-bottom: 1px solid #141414;
    font-weight: 500;
}
.auth-page ul li {
    text-align: left;
}
.register-field {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}
.register-field h6 {
    text-align: center;
    font-weight: 100;
}
.register-field h6 a {
    color: #141414;
    font-weight: 700;
}
.register-field p {
    text-align: center;
}
.register-field p a {
    font-weight: 700;
    text-decoration: underline;
}
.auth-check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--red);
    font-weight: 700;
}
.auth-check-forgot .form-check {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.auth-field-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.auth-field-checkbox label {
    margin-top: 2px;
}
.auth-field-checkbox a {
    border-bottom: 1px solid #141414;
}
.auth-form .auth-field input[type="checkbox"] {
    margin: 0;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 1px solid #141414;
    padding-left: 0;
    margin-right: 10px;
}
.auth-form .auth-field input[type="checkbox"]:checked {
    background-color: #118706 !important;
    border-color: #118706 !important;
}
.auth-form .auth-field label {
    text-align: start;
    margin-bottom: 10px;
    line-height: 1;
}
.auth-form .auth-field:not(:first-of-type) {
   margin-top: 1.5rem;
}
.swal2-actions button{
    box-shadow: 0 0 0 transparent!important;
}
.login-page {
    margin-top: 0 !important;
}
.bg-image {
    width: 100%;
    height: 648px;
    position: absolute;
    top: 0;
    left: 0;
}
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.register-page {
    margin-top: 0 !important;
    padding: 60px 0 100px;
}
.forgot-bg {
    height: 448px;
}

/*
** Auth page Responsive
*/
@media (max-width: 1260px) {
    .auth-form h1 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .auth-form h1 {
        font-size: 2rem;
    }
    .bg-image {
        height: 768px;
    }
    .login-page {
        padding: 185px 0 185px;
    }
    .register-page {
        padding: 120px 0 60px;
    }
    .auth-form {
        width: 100%;
    }
    .forgot-bg {
        height: 590px;
    }
}
@media (max-width: 500px) {
    .auth-form .auth-action button {
        padding: 10px 24px;
    }
}
