   .login-wrapper {
        min-height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    /* Decorative elements */
    .login-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        z-index: 0;
    }

    .login-wrapper::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -10%;
        width: 350px;
        height: 350px;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        z-index: 0;
    }

    /* Card */
    .login-card {
        width: 100%;
        max-width: 480px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 50px 45px;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.08),
            0 5px 15px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .login-card:hover {
        transform: translateY(-5px);
    }

    /* Header */
    .login-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .login-icon {
        width: 70px;
        height: 70px;
        background: #1B94E7;
        border-radius: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: #1B94E7;
    }

    .login-icon svg {
        width: 32px;
        height: 32px;
        fill: white;
    }

    .login-title {
        font-size: 32px;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 8px;
        background: #1B94E7;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .login-subtitle {
        font-size: 15px;
        color: #64748b;
        font-weight: 500;
    }

    /* Session Status */
    .auth-session-status {
        padding: 12px 16px;
        background: #d1fae5;
        border: 1px solid #a7f3d0;
        border-radius: 12px;
        color: #065f46;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 24px;
        text-align: center;
    }

    .auth-session-status.error {
        background: #fee2e2;
        border-color: #fecaca;
        color: #991b1b;
    }

    /* Form Styles */
    .form-group {
        margin-bottom: 24px;
        position: relative;
    }

    .form-label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-input-wrapper {
        position: relative;
    }

    .form-input {
        width: 100%;
        padding: 14px 16px 14px 48px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 15px;
        color: #1e293b;
        background: #f8fafc;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .form-input:focus {
        outline: none;
        border-color: #3b82f6;
        background: white;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-input::placeholder {
        color: #94a3b8;
    }

    .form-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: #94a3b8;
        z-index: 2;
    }

    .password-toggle {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #94a3b8;
        cursor: pointer;
        padding: 4px;
    }

    .password-toggle:hover {
        color: #3b82f6;
    }

    /* Error Messages */
    .input-error {
        color: #ef4444;
        font-size: 13px;
        margin-top: 6px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Remember Me Checkbox */
    .remember-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .remember-checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .checkbox-input {
        width: 18px;
        height: 18px;
        border: 2px solid #cbd5e1;
        border-radius: 4px;
        background: white;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

    .checkbox-input:checked {
        background: #3b82f6;
        border-color: #3b82f6;
    }

    .checkbox-input:checked::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

    .checkbox-label {
        font-size: 14px;
        color: #475569;
        font-weight: 500;
        cursor: pointer;
    }

    .forgot-password {
        font-size: 14px;
        color: #3b82f6;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .forgot-password:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

    /* Button Container */
    .button-container {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }

    .login-btn {
        flex: 1;
        padding: 16px;
        background: #1B94E7;
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }

    .login-btn:active {
        transform: translateY(0);
    }

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

    .login-btn:hover::after {
        left: 100%;
    }

    .register-btn {
        flex: 1;
        padding: 16px;
        background: transparent;
        color: #3b82f6;
        border: 2px solid #3b82f6;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .register-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .register-btn:active {
        transform: translateY(0);
    }

    /* Register Link (Alternative) */
    .register-link-container {
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid #e2e8f0;
    }

    .register-text {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 8px;
    }

    .register-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #3b82f6;
        font-weight: 600;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .register-link:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 640px) {
        .login-card {
            padding: 40px 30px;
            margin: 0 15px;
        }
        
        .login-title {
            font-size: 28px;
        }
        
        .login-icon {
            width: 60px;
            height: 60px;
        }
        
        .button-container {
            flex-direction: column;
            gap: 12px;
        }
        
        .remember-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
    }




    .register-wrapper {
            min-height: 85vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .register-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            z-index: 0;
        }

        .register-wrapper::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
            border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            z-index: 0;
        }

        /* Card */
        .register-card {
            width: 100%;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px 45px;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.08),
                0 5px 15px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .register-card:hover {
            transform: translateY(-5px);
        }

        /* Header */
        .register-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .register-icon {
            width: 70px;
            height: 70px;
            background: #1B94E7;
            border-radius: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: ;
        }

        .register-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .register-title {
            font-size: 32px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 8px;
            background: #1B94E7;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .register-subtitle {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px 14px 48px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            color: #1e293b;
            background: #f8fafc;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .form-input:focus {
            outline: none;
            border-color: #1B94E7;
            background: white;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-input::placeholder {
            color: #94a3b8;
        }

        .form-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #94a3b8;
            z-index: 2;
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            padding: 4px;
        }

        .password-toggle:hover {
            color: #6366f1;
        }

        /* Error Messages */
        .input-error {
            color: #ef4444;
            font-size: 13px;
            margin-top: 6px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Button */
        .register-btn {
            width: 100%;
            padding: 16px;
            background: #1B94E7;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
        }

        .register-btn:active {
            transform: translateY(0);
        }

        .register-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .register-btn:hover::after {
            left: 100%;
        }

        /* Login Link */
        .login-link-container {
            text-align: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e2e8f0;
        }

        .login-text {
            font-size: 15px;
            color: #64748b;
            margin-bottom: 8px;
        }

        .login-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #6366f1;
            font-weight: 600;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .login-link:hover {
            background: rgba(99, 102, 241, 0.1);
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 640px) {
            .register-card {
                padding: 40px 30px;
                margin: 0 15px;
            }

            .register-title {
                font-size: 28px;
            }

            .register-icon {
                width: 60px;
                height: 60px;
            }
        }




        .verification-container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
        padding: 20px;
    }
    
    .verification-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 30px;
        max-width: 500px;
        width: 100%;
        text-align: center;
        /* min-height: 400px; */
    }
    
    .verification-message {
        margin-top: 15px;
        margin-bottom: 20px;
        color: #333;
        line-height: 1.5;
    }
    
    .verification-success {
        background-color: #d4edda;
        color: #155724;
        padding: 12px;
        border-radius: 4px;
        margin-bottom: 20px;
        border: 1px solid #c3e6cb;
    }
    
    .verification-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 35px;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
        border: none;
        font-size: 14px;
    }
    
    .btn-primary {
        background-color: #007bff;
        color: white;
    }
    
    .btn-primary:hover {
        background-color: #0056b3;
    }
    
    .btn-secondary {
        background-color: #f8f9fa;
        color: #333;
        border: 1px solid #ddd;
    }
    
    .btn-secondary:hover {
        background-color: black;
    }
    
    .footer-links {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        font-size: 12px;
        color: #666;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 10px;
    }
    
    .footer-links a:hover {
        text-decoration: underline;
    }
    
    .copyright {
        margin-top: 10px;
        font-size: 12px;
        color: #999;
    }