@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body.auth-page {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    margin: 0;
    background: #090d16;
    color: #f8fafc;
}

.auth-split-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Hero Banner Styling */
.auth-sidebar-banner {
    flex: 1.2;
    background: radial-gradient(circle at 20% 20%, #1e1b4b 0%, #0f172a 60%, #090d16 100%);
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-sidebar-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-sidebar-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

/* Right Form Container Styling */
.auth-form-container {
    width: 580px;
    background: #0f172a;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.auth-form-header h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.demo-selector-pills {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-pill-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #94a3b8;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-pill-btn.active, .demo-pill-btn:hover {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.form-label-custom {
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group-custom {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.input-group-custom:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.input-group-custom .input-group-text {
    background: transparent;
    border: none;
    color: #64748b;
    padding-left: 16px;
    font-size: 1.1rem;
}

.form-control-dark {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 14px 16px 14px 10px;
    font-size: 0.95rem;
}

.form-control-dark:focus {
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    outline: none;
}

.form-control-dark::placeholder {
    color: #64748b;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

@media (max-width: 991px) {
    .auth-sidebar-banner {
        display: none;
    }
    .auth-form-container {
        width: 100%;
        padding: 50px 28px;
    }
}
