 :root {
            --auth-primary: #1a1a2e;
            --auth-primary-hover: #16162a;
            --auth-text: #344054;
            --auth-text-light: #667085;
            --auth-border: #d0d5dd;
            --auth-bg: #f9fafb;
            --auth-white: #ffffff;
            --auth-link: #2196F3;
            --auth-error: #dc3545;
            --auth-success: #28a745;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--auth-bg);
            min-height: 100vh;
        }

.auth-container {
    display: flex;
    /* min-height: 100vh; */
    margin: 15px auto;
    background: #fff;
    padding: 10px;
    width: 70%;
    border: 1px solid #ececec;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
       .imageCover img {
    width: 100%;
}
       .auth-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background-color: var(--auth-white);
}

    .auth-right {
    /* flex: 1; */
    display: none;
    padding: 20px;
    background-color: var(--auth-bg);
    width: 50%;
}
.logoWrapper img {
    width: 160px;
    margin-left: 77px;
    margin-bottom: 20px;
}
        @media (min-width: 992px) {
            .auth-right {
                display: block;
            }
        }

        .auth-form-wrapper {
            max-width: 360px;
            width: 100%;
            margin: 0 auto;
        }

        .auth-title {
            font-size: 30px;
            font-weight: 600;
            color: var(--auth-primary);
            margin-bottom: 8px;
        }

        .auth-title .auth-welcome {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-weight: 500;
        }

        .auth-subtitle {
            font-size: 14px;
            color: var(--auth-text-light);
            margin-bottom: 32px;
        }

        .auth-form-group {
            margin-bottom: 20px;
        }

        .auth-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--auth-text);
            margin-bottom: 6px;
        }

        .auth-input {
            width: 100%;
            padding: 10px 14px;
            font-size: 14px;
            border: 1px solid var(--auth-border);
            border-radius: 8px;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .auth-input:focus {
            border-color: var(--auth-primary);
            box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
        }

        .auth-input::placeholder {
            color: var(--auth-text-light);
        }

        .auth-input.error {
            border-color: var(--auth-error);
        }

        .auth-error-text {
            font-size: 12px;
            color: var(--auth-error);
            margin-top: 4px;
            display: none;
        }

        .auth-error-text.show {
            display: block;
        }

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

        .auth-password-wrapper .auth-input {
            padding-right: 44px;
        }

        .auth-password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--auth-text-light);
            transition: color 0.2s;
        }

        .auth-password-toggle:hover {
            color: var(--auth-primary);
        }

        .auth-password-toggle svg {
            width: 20px;
            height: 20px;
        }

        /* OTP Input */
        .auth-otp-container {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 24px;
        }

        .auth-otp-input {
            width: 48px;
            height: 56px;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            border: 1px solid var(--auth-border);
            border-radius: 8px;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .auth-otp-input:focus {
            border-color: var(--auth-primary);
            box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
        }

        .auth-otp-input.error {
            border-color: var(--auth-error);
        }

        .auth-resend-timer {
            text-align: center;
            font-size: 14px;
            color: var(--auth-text-light);
            margin-bottom: 24px;
        }

        .auth-resend-timer a {
            color: var(--auth-link);
            cursor: pointer;
            font-weight: 500;
        }

        .auth-resend-timer a:hover {
            text-decoration: underline;
        }

        .auth-resend-timer a.disabled {
            color: var(--auth-text-light);
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Step indicator for forgot password */
        .auth-step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 32px;
        }

        .auth-step {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            background-color: var(--auth-border);
            color: var(--auth-text-light);
            transition: all 0.3s;
        }

        .auth-step.active {
            background-color: var(--auth-primary);
            color: var(--auth-white);
        }

        .auth-step.completed {
            background-color: var(--auth-success);
            color: var(--auth-white);
        }

        .auth-step-line {
            width: 40px;
            height: 2px;
            background-color: var(--auth-border);
            transition: background-color 0.3s;
        }

        .auth-step-line.completed {
            background-color: var(--auth-success);
        }

        .auth-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .auth-checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .auth-checkbox {
            width: 16px;
            height: 16px;
            accent-color: var(--auth-primary);
            cursor: pointer;
        }

        .auth-checkbox-label {
            font-size: 14px;
            color: var(--auth-text);
            cursor: pointer;
        }

        .auth-forgot-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--auth-link);
            text-decoration: none;
            cursor: pointer;
        }

        .auth-forgot-link:hover {
            text-decoration: underline;
        }

        .auth-btn {
            width: 100%;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

     .auth-btn-primary {
    background-color: #018E99;
    color: var(--auth-white);
    border: none;
}

        .auth-btn-primary:hover {
            background-color: var(--auth-primary-hover);
        }

        .auth-btn-primary:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .auth-btn-outline {
            background-color: var(--auth-white);
            color: var(--auth-text);
            border: 1px solid var(--auth-border);
        }

        .auth-btn-outline:hover {
            background-color: var(--auth-bg);
        }

        .auth-social-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }

        .auth-social-icon {
            width: 20px;
            height: 20px;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            margin: 16px 0;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: var(--auth-border);
        }

        .auth-divider span {
            padding: 0 10px;
            font-size: 12px;
            color: var(--auth-text-light);
        }

        .auth-footer-text {
            text-align: center;
            font-size: 14px;
            color: var(--auth-text-light);
            margin-top: 32px;
        }

        .auth-footer-link {
            font-weight: 500;
            color: var(--auth-link);
            text-decoration: none;
            cursor: pointer;
        }

        .auth-footer-link:hover {
            text-decoration: underline;
        }
.auth-copyright {
    /* position: absolute; */
    bottom: 20px;
    left: 40px;
    font-size: 12px;
    color: var(--auth-text-light);
    text-align: center;
}

        /* Image Grid */
        .auth-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 16px;
            height: 100%;
            max-height: calc(100vh - 40px);
        }

        .auth-image-cell {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .auth-image-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .auth-image-cell.auth-bg-peach {
            background: linear-gradient(135deg, #fbd5c8 0%, #f5c6b8 100%);
        }

        .auth-image-cell.auth-bg-lavender {
            background: linear-gradient(135deg, #d8d4e8 0%, #c8c4d8 100%);
        }

        .auth-image-cell.auth-bg-mint {
            background: linear-gradient(135deg, #c8e0d8 0%, #b8d0c8 100%);
        }

        .auth-image-cell.auth-bg-pink {
            background: linear-gradient(135deg, #f5d0d8 0%, #e8c0c8 100%);
        }

        .auth-arrow-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
        }

        /* Toast Notifications */
        .auth-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .auth-toast {
            padding: 14px 20px;
            border-radius: 8px;
            background: var(--auth-white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 280px;
            max-width: 400px;
            animation: authSlideIn 0.3s ease;
        }

        @keyframes authSlideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .auth-toast.auth-toast-success {
            border-left: 4px solid var(--auth-success);
        }

        .auth-toast.auth-toast-error {
            border-left: 4px solid var(--auth-error);
        }

        .auth-toast-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .auth-toast-message {
            font-size: 14px;
            color: var(--auth-text);
        }

        /* View transitions */
.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
}

@media (max-width: 1199.98px) {
    .auth-container {
        width: 86%;
    }

    .logoWrapper img {
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .auth-container {
        width: calc(100% - 32px);
        padding: 20px 16px;
    }

    .auth-form-wrapper {
        max-width: 100%;
    }

    .logoWrapper {
        text-align: center;
    }

    .logoWrapper img {
        margin-bottom: 16px;
    }
}

@media (max-width: 575.98px) {
    .auth-container {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 16px 12px;
        border-radius: 14px;
    }

   .auth-title {
    font-size: 26px;
    text-align: center;
}
   .auth-subtitle {
    margin-bottom: 24px;
    text-align: center;
}

    .auth-row {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }

    .auth-otp-container {
        gap: 8px;
    }

    .auth-otp-input {
        width: 42px;
        height: 50px;
    }
}

        /* Password strength */
        .auth-password-strength {
            display: flex;
            gap: 4px;
            margin-top: 8px;
        }

        .auth-strength-bar {
            flex: 1;
            height: 4px;
            background-color: var(--auth-border);
            border-radius: 2px;
            transition: background-color 0.2s;
        }

        .auth-strength-bar.weak {
            background-color: var(--auth-error);
        }

        .auth-strength-bar.medium {
            background-color: #ffc107;
        }

        .auth-strength-bar.strong {
            background-color: var(--auth-success);
        }

        .auth-strength-text {
            font-size: 12px;
            color: var(--auth-text-light);
            margin-top: 4px;
        }

        /* Back link */
        .auth-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--auth-text);
            text-decoration: none;
            margin-bottom: 24px;
            cursor: pointer;
        }

        .auth-back-link:hover {
            color: var(--auth-primary);
        }

        .auth-back-icon {
            width: 16px;
            height: 16px;
        }

        /* Spinner */
        .auth-spinner {
            width: 18px;
            height: 18px;
            border: 2px solid transparent;
            border-top-color: var(--auth-white);
            border-radius: 50%;
            animation: authSpin 0.8s linear infinite;
        }

        @keyframes authSpin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Mobile responsive */
        @media (max-width: 576px) {
          .auth-left {
    padding: 15px 5px;
}

            .auth-copyright {
                left: 24px;
            }
        }

        /* Success checkmark animation */
        .auth-success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-success-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        /* Container */
.login-selection {
    display: flex;
    gap: 20px;   /* space between cards */
    /* width: 700px; */
}

/* Hide default radio */
.login-selection input[type="radio"] {
    display: none;
}

/* Card Style */
.option-card {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

/* Hover */
.option-card:hover {
    border-color: #018e99;
}

/* Text */
.option-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.option-text p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #777;
}

/* Custom Radio */
.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

/* Active State */
input[type="radio"]:checked + .option-card {
    border-color: #018e99;
    background: #f4feff;
}

input[type="radio"]:checked + .option-card .radio-circle {
    border-color: #018e99;
}

input[type="radio"]:checked + .option-card .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #018e99;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-selection label{
width: 50%;
}
/* Responsive */
@media(max-width:768px){
   .login-selection {
    width: 100%;
        gap: 10px;
}

}
