/* SOAR Waitlist Form Styles
   Add this to any page that uses the waitlist form.
   If your page already loads soar-brand.css, these styles are included — skip this file. */

.soar-waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.soar-waitlist-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.soar-waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.soar-waitlist-form input[type="email"]:focus {
    border-color: #e94560;
}

/* Light background variant — add class "light-bg" to the form's parent section */
.light-bg .soar-waitlist-form input[type="email"] {
    background: #ffffff;
    color: #1a1a2e;
    border-color: #e0e0e0;
}

.light-bg .soar-waitlist-form input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.waitlist-success {
    color: #2ecc71;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 16px;
}

.waitlist-error {
    color: #e94560;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin-top: 8px;
}
