/* ================= LOGIN PAGE ================= */


/* Top Purple Strip */
.login-strip {
    position: absolute;
    top: 0;
    width: 100%;
    height: 18px;
    background: #6a0dad;
    z-index: 5;
}

/* LEFT SIDE */
.login-left {
    padding: 61px 110px 0px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.login-logo img {
    height: 100px;
}

/* Small Brand Text */
.brand-small {
    color: #ff2db2;
    font-size: 16px;
}

/* Heading */
.login-left h2 {
    font-weight: 700;
    font-size: 35px;
    color: #6a0dad;
    margin: 5px 0 15px;
}

/* Description */
.login-desc {
    font-size: 13px;
    color: #684972;
    margin-bottom: 15px;
}

.signup-wrapper .login-btn {
    padding: 9px !important;
}

/* Labels */
.login-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #512e5b;
}

/* Input Fields */
/* Input Fields */
.login-input {
    width: 100%;
    border-radius: 30px;
    border: 1px solid #d5c1d0;
    background: #f8f6fb !important;
    margin-bottom: 20px;
    font-size: 14px;
    color: #878787 !important;
    padding: 10px 57px 10px 20px;
}

.signup-wrapper {
    background: #f9f2fd !important;
}

.login-input::placeholder {
    color: #878787 !important;
}

.login-input:focus {
    border-color: #6a0dad;
    box-shadow: none;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #aaa;
    cursor: pointer;
}

/* Custom Checkbox */
.custom-checkbox-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.custom-checkbox-v2 input {
    display: none;
}

.custom-checkbox-v2 label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ff2db2;
    font-family: var(--secondary-semibold-font);

}

.custom-checkbox-v2 label span {
    width: 19px;
    height: 18px;
    border: 2px solid #ff2db2;
    border-radius: 4px;
    position: relative;
}

.custom-checkbox-v2 input:checked+label span::after {
    content: "✓";
    font-size: 11px;
    position: absolute;
    top: -1px;
    left: 3px;
    color: #ff2db2;
}

/* Forgot Password */
.forgot-link {
    text-decoration: none;
    font-family: var(--secondary-semibold-font);
    font-size: 16;
}

/* Button */
.login-btn {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
    background: #6000a0;
    font-family: var(--secondary-semibold-font);
    transition: 0.3s;
    position: relative;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.login-btn:hover {
    opacity: 0.9;
}

/* Bottom Text */
.bottom-text {
    text-align: center;
    font-size: 14px;
    color: #45204f;
    font-family: var(--secondary-semibold-font);
}

.bottom-text a {
    color: #6a0dad;
    text-decoration: none;
    font-family: var(--secondary-semibold-font);

}

.login-right .auth_right_image {
    height: 630px;
    position: fixed;
    height: 100%;
    object-fit: fill;
}

/* RIGHT SIDE */


@media (max-width: 1368px) {

    .login-left {
        padding: 61px 30px 0px 60px;
    }

    .login-logo img {
        height: 87px;
        object-fit: scale-down;
    }

    .text-danger {
        color: #dc3545 !important;
        font-size: 13px;
    }

    .login-logo {
        position: absolute;
        top: 7px !important;
        left: 50px !important;
    }

    .login-left h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }
}

@media (max-width: 1116px) {
    .login-left {
        padding: 61px 50px 0px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .login-logo img {
        height: 77px;
        object-fit: scale-down;
    }

    .login-logo {
        position: absolute;
        top: 7px !important;
        left: 10px !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .login-logo {
        position: absolute;
        top: 8px !important;
        left: 92px !important;
    }

    .login-right .auth_right_image {
        position: unset;
        height: unset;
        object-fit: fill;
    }

    .login-left,
    .login-right {
        width: 100%;
    }

    .login-right {
        height: 300px;
    }

    .login-left {
        padding: 100px 70px 50px 110px;
    }

    .login-logo img {
        height: 90px;
        object-fit: scale-down;
    }
}

@media (max-width: 579px) {
    .login-left {
        padding: 140px 0px 50px 0px;
    }

    .login-logo {
        position: absolute;
        top: 17px !important;
        left: 0px !important;
    }
}