/* ===== LOGIN PAGE STYLES ===== */

:root {
    --primary-green: #008957;
    --primary-dark: #007046;
    --bg-light: #f8fafc;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --input-bg: #f8fafc;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.login-sidebar {
    position: relative;
    flex: 1;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    overflow: hidden;
}

.sidebar-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -150px;
}

.circle-3 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.login-logo {
    height: 72px; /* Increased from 64px */
    margin-bottom: 60px;
}

.chat-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.chat-icon {
    width: 24px;
    height: 24px;
}

.sidebar-signup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.sidebar-signup-badge:hover {
    background: #fff;
    color: var(--primary-green);
    transform: translateY(-2px);
}

.hero-text h1 {
    font-size: 56px; /* Increased slightly more */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px; /* Increased from 18px */
    opacity: 0.9;
    margin-bottom: 48px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px; /* Increased from 24px per user request */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 15px; /* Increased from 13px */
    opacity: 0.9;
}

.btn-signup-alt {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #22c55e40;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-signup-alt i {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

.btn-signup-alt:hover {
    background: #dfefdf;
    transform: translateY(-2px);
}

.footer-legal {
    margin-top: auto;
    font-size: 13px;
    opacity: 0.7;
}

/* Form Section Styling */
.login-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fff;
}

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

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 600;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    background: var(--input-bg);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

.form-options {
    margin-bottom: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.btn-signin {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-signin i {
    width: 18px;
    height: 18px;
}

.btn-signin:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.divider {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 12px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-whatsapp {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #22c55e40;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp i {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

.btn-whatsapp:hover {
    background: #dfefdf;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-footer a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .login-sidebar {
        padding: 40px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-sidebar {
        min-height: auto;
        padding: 60px 40px;
    }
    
    .sidebar-circles {
        display: none;
    }
    
    .stats-grid {
        margin-bottom: 0;
    }
    
    .hero-text p {
        margin-bottom: 30px;
    }
    
    .login-logo {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .stats-grid {
        gap: 20px;
    }
}
