/* Premium Signup Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
}

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

/* Left Panel - Branding */
.brand-panel {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #8209f1 0%, #27272a 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.brand-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.brand-content {
    position: relative;
    z-index: 1;
}

.brand-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brand-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.brand-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.brand-feature i {
    width: 20px;
    color: #a78bfa;
}

.brand-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Right Panel - Form */
.form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

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

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header p {
    color: #71717a;
    font-size: 15px;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e4e4e7;
    transition: all 0.3s;
}

.progress-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #7c3aed;
}

.progress-dot.completed {
    background: #7c3aed;
}

/* Form Styles */
.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: 500;
    color: #3f3f46;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    font-size: 15px;
    color: #18181b;
    background: white;
    transition: all 0.2s;
    outline: none;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #d4d4d8;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: #a1a1aa;
}

/* Password Field */
.password-wrapper {
    position: relative;
}

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

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: #7c3aed;
}

/* Password Strength */
.password-strength {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.strength-bar-container {
    flex: 1;
    height: 3px;
    background: #e4e4e7;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.strength-text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Divider */
.section-label {
    font-size: 11px;
    font-weight: 600;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #18181b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.submit-btn:hover:not(:disabled) {
    background: #27272a;
    transform: translateY(-1px);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Links */
.form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f4f4f5;
}

.form-footer p {
    color: #71717a;
    font-size: 14px;
}

.form-footer a {
    color: #7c3aed;
    font-weight: 500;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.terms {
    margin-top: 16px;
    font-size: 12px;
    color: #a1a1aa;
    text-align: center;
}

.terms a {
    color: #71717a;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .signup-wrapper {
        flex-direction: column;
    }

    .brand-panel {
        flex: none;
        padding: 40px 24px;
    }

    .brand-content h1 {
        font-size: 28px;
    }

    .brand-features {
        display: none;
    }

    .form-panel {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .brand-panel {
        padding: 32px 20px;
    }

    .brand-content h1 {
        font-size: 24px;
    }

    .brand-content p {
        font-size: 15px;
    }
}
