/* Signup App Styles - Clean & Trustworthy */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.signup-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.match-text {
    font-size: 1.05rem;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.05rem;
    color: #666;
}

.benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1rem;
    color: #333;
}

.benefit .icon {
    font-size: 1.3rem;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.google-button:hover {
    background: #f8f9fa;
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 24px;
    line-height: 1.5;
}

.privacy-text a {
    color: #667eea;
    text-decoration: none;
}

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

.social-proof {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.proof-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 0.95rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.author {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .signup-card {
        padding: 40px 30px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .google-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}