body,
html {
    margin: 0;
    font-family: "Clash Display", sans-serif;
    background-color: #fff;
}

.section {
    height: 100vh;
    min-height: 600px;
    padding: 0;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .section {
        min-height: 100vh;
        height: auto;
    }
}

.swal-title {
    font-family: "Clash Display", sans-serif;
    font-size: 1.146vw;
    font-weight: 700;
    font-size: 0.677vw;
    margin-top: 0.26vw;
}

.swal-text {
    font-family: "Clash Display", sans-serif;
    font-size: 0.833vw;
    font-weight: 400;
    color: #444;
}

.row-about {
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.left-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.625vw 0.625vw 0.625vw 0;
    /* overflow: hidden; */
    position: relative;
}

.left-img img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 1.042vw;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.left-img img:hover {
    transform: scale(1.02);
}

.login-form-wrapper {
    width: 80%;

    margin: auto;
    padding: 2.083vw 1.042vw;
}

.login-form-wrapper h4 {
    font-weight: 400;
    color: #999;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-form-wrapper h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.667vw;
}

.form-group {
    position: relative;
}

.form-control {
    border-radius: 0.625vw;
    padding: 0.729vw 2.344vw 0.729vw 0.729vw;
    font-size: 0.833vw;
    font-weight: 400;
}

.toggle-password {
    position: absolute;
    right: 0.781vw;
    top: 70% !important;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 5;
    font-size: 0.833vw;
}

.btn-submit {
    background-color: #014d42;
    color: #fff !important;
    border-radius: 0.417vw;
    padding: 0.625vw;
    width: 100%;
    margin-top: 1.042vw;
    font-size: 0.833vw;
    border:0.052vw solid #014d42;
}
.btn-submit:hover{
    color:#014d42 !important;
    background:#fff;
}
.forgot {
    text-align: right;
    font-size: 0.833vw;
    color: #aaa;
    margin-top: 0.26vw;
    text-decoration: none;
}

.error-msg {
    color: red;
    font-size: 0.677vw;
    margin-top: 0.26vw;
}

/* .btn-submit:hover {
    color: white !important;
} */

.text-reset {
    font-size: 1.146vw;
    color: #888 !important;
    font-weight: 400;
    text-align: center;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ffffff;
    outline: 1;
    box-shadow: none;
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .left-img {
        padding: 12px 12px 12px 0;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .left-img {
        padding: 12px 12px 12px 0;
    }
}

/* Large Tablet/Laptop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .left-img {
        padding: 10px 10px 10px 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .left-img {
        padding: 10px 10px 10px 0;
        min-height: 350px;
        justify-content: center;
    }

    .row-about {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .left-img {
        display: flex;
        padding: 8px 8px 8px 0;
        min-height: 250px;
        max-height: 300px;
        justify-content: center;
    }

    .section {
        padding: 20px 15px;
        min-height: auto;
    }

    .row-about {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile Portrait (below 576px) */
@media (max-width: 575px) {
    .left-img {
        display: none;
    }

    .section {
        padding: 20px 15px;
        min-height: 100vh;
        height: auto;
    }

    .row-about {
        height: auto;
    }

    .login-form-wrapper {
        padding: 30px 15px;
    }
}

label.form-label {
    font-size: 20px;
    font-weight: 500;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px;
    /* space for eye icon */
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    /* always vertical center */
    cursor: pointer;
    color: #888;
    font-size: 16px;
}

.error-msg {
    color: red;
    font-size: 10px;
    position: absolute;
    bottom: -26px;
    /* place error under input */
    left: 0;
}

@media (max-width: 981px) {
    .login-form-wrapper {
        width: 100%;
        margin: auto;
        padding: 40px 20px;
    }

    label.form-label {
        font-size: 14px;
        font-weight: 500;
    }

    .text-reset {
        font-size: 12px;
        color: #888 !important;
        font-weight: 400;
        text-align: center;
    }
}