/* ================= 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: 30px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

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

/* Input Fields */

/* Password wrapper */
.password-wrapper {
    position: relative;
}
.login-logo {
    position: absolute !important;
    top: 98px !important;
    left: 110px !important;
}
.password-wrapper i {
    position: absolute;
    right: 25px;
    top: 14px;
    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: #593921;
    font-family: var(--secondary-semibold-font);
}

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

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

/* 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: #281d15;
    font-family: var(--secondary-semibold-font);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

@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: #281d15;
    font-family: var(--secondary-semibold-font);
}

.bottom-text a {
    color: #281d15;
    text-decoration: none;
    font-family: var(--secondary-semibold-font);
}

/* RIGHT SIDE */

/* Responsive */
@media (max-width: 991px) {
    .login-left,
    .login-right {
        width: 100%;
    }

    .login-right {
        height: 300px;
    }
}

/* model ================== */
/* ================= AGE MODAL ================= */

.age-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.custom-age-modal {
    position: relative;
}

.custom-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: #6a0dad !important;
    opacity: 1;
    z-index: 10;
    padding: 10px;
}

.age-left img {
    /* height: 100%; */
    height: 515px !important;
    object-fit: cover;
}

.age-right {
    padding: 50px 45px;
    background: #f4edf9;
}

.verify-small {
    color: #593921;
    font-size: 14px;
}

.age-right h3 {
    margin: 10px 0 25px;
}

.age-check {
    margin-bottom: 15px;
}

.age-check input {
    margin-right: 8px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.decline-btn {
    border: 1px solid #d89eff;
    border-radius: 30px;
    padding: 10px 25px;
    background: #ffff;
    color: #53475b;
    width: 100%;
    font-family: var(--secondary-semibold-font);
}

.accept-btn {
    background: #6a0dad;
    border-radius: 30px;
    padding: 10px 25px;
    color: #fff;
    width: 100%;
}

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

.terms-text {
    font-size: 12px;
    margin-top: 15px;
    color: #777;
}

/* Custom Purple Checkbox */
.custom-check input {
    display: none;
}

.custom-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.custom-check label span {
    width: 20px;
    height: 20px;
    border: 1px solid #6a0dad;
    border-radius: 0px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Checked State */
.custom-check input:checked + label span {
    background: #6a0dad;
    border-color: #6a0dad;
}

/* White Checkmark */
.custom-check input:checked + label span::after {
    content: '✔';
    position: absolute;
    color: #fff;
    font-size: 12px;
    left: 4px;
    top: 0px;
}

.login .social-icons a i {
    color: #534a59;
}

.login .social-icons a:hover i {
    color: #6a0dad;
}

.login .social-icons a {
    text-decoration: none;
}

.btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
}

@media (max-width: 991px) {
    .login-left {
        padding: 200px 70px 50px 110px;
    }
}
