        :root {
            --primary-color: #2563eb;
            --primary-hover: #1d4ed8;
            --secondary-color: #6b7280;
            --danger-color: #dc2626;
            --success-color: #16a34a;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }

        .breadcrumb {
            padding: 1rem;
            background: #f8f9fa;
            font-size: 0.9rem;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
        }

        .breadcrumb-nav a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-nav i {
            margin: 0 0.5rem;
            font-size: 0.8rem;
            color: var(--secondary-color);
        }

        .auth-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .auth-flex {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .auth-form-wrap {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .auth-form-wrap:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .auth-title {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .auth-title h2 {
            font-size: 1.5rem;
            color: #111827;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .input-box {
            position: relative;
        }

        .input-box input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .input-box input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .input-box .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--secondary-color);
        }

        .error {
            color: var(--danger-color);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: block;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            width: 100%;
        }

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

        .btn-primary:disabled {
            background-color: #9ca3af;
            cursor: not-allowed;
        }

        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            margin-left: 0.5rem;
        }

        .link-forgot {
            display: block;
            text-align: center;
            margin-top: 1rem;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.875rem;
        }

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

        .form-message {
            margin-top: 1rem;
            padding: 0.75rem;
            border-radius: var(--border-radius);
            text-align: center;
        }

        .error-message {
            background-color: #fee2e2;
            color: var(--danger-color);
        }

        .success-message {
            background-color: #dcfce7;
            color: var(--success-color);
        }

        .otp-container {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .otp-input {
            flex: 1;
        }

        .timer {
            color: var(--danger-color);
            font-size: 0.875rem;
            margin-left: 0.5rem;
        }

        .captcha-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            background: #f3f4f6;
            padding: 1rem;
            border-radius: var(--border-radius);
        }

        .captcha-image {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            letter-spacing: 0.5rem;
            background: #e5e7eb;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            user-select: none;
        }

        .captcha-refresh {
            color: var(--primary-color);
            cursor: pointer;
            font-size: 1.25rem;
        }

   
      
        .login-method-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .toggle-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: underline;
        }

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

        .password-strength {
            margin-top: 0.5rem;
        }

        .strength-bar {
            height: 5px;
            width: 0;
            background: transparent;
            transition: var(--transition);
            border-radius: 5px;
            margin-bottom: 0.25rem;
        }

        .strength-text {
            font-size: 0.75rem;
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .auth-flex {
                flex-direction: column;
            }
        }
        
        
        /* Add this to your CSS */
#send-login-otp {
    min-width: 100px; /* Ensure consistent button width */
    transition: all 0.3s ease; /* Smooth state transitions */
}

#send-login-otp:disabled {
    background-color: #cccccc;
}