/* ===== SIGNUP PAGE STYLES (Split Screen Reversed) ===== */

: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;
}

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

/* Sidebar Styling (Right Side) */
.signup-sidebar {
    position: relative;
    flex: 1.1; /* Slightly wider sidebar for text */
    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; left: -100px; }
.circle-2 { width: 300px; height: 300px; bottom: 50px; right: -150px; }
.circle-3 { width: 500px; height: 500px; bottom: -200px; left: -150px; background: rgba(255, 255, 255, 0.05); }

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

.signup-logo {
    height: 72px;
    margin-bottom: 60px;
}

.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;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 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;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

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

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

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

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

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

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

.form-header p a {
    color: var(--primary-green);
    font-weight: 700;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background: var(--input-bg);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    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);
}

.phone-input-wrapper {
    display: flex;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--input-bg);
    transition: var(--transition);
}

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

.phone-prefix {
    background: #f1f5f9;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid #e2e8f0;
    cursor: pointer;
    font-size: 12px;
}

.phone-prefix img {
    width: 20px;
    border-radius: 2px;
}

.phone-input-wrapper input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
}

.btn-signup-main {
    background: #065541; /* Darker green like reference */
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-signup-main:hover {
    background: #044232;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 85, 65, 0.2);
}

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

.form-footer a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .signup-container { flex-direction: column; }
    .signup-sidebar { padding: 60px 40px; order: 2; }
    .hero-text h1 { font-size: 32px; }
    .stats-grid { margin-bottom: 0; }
    .form-row { grid-template-columns: 1fr; }
}
