body {
    background-color: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.email-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1.5rem;
    min-height: 100vh;
}

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

.email-logo {
    display: block;
    margin: 0 auto 1.25rem;
    max-width: 120px;
    height: auto;
}

.email-header {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--accent);
    margin: 0 0 1rem 0;
    font-weight: 700;
    text-align: center;
}

.email-text {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}

.email-text b {
    color: var(--text);
    font-weight: 700;
}

.signup-form {
    width: 100%;
    margin: 0;
}

@media (min-width: 768px) {    
    .signup-form {
        padding-top: 0 !important;
    }
}

/* Form styles are inherited from styles.css */

.formkit-form > div {
    padding-top: 0 !important;
}

.hero-description {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}

.hero-description strong {
    color: var(--text);
    font-weight: 700;
}

.learn-more-link {
    text-align: center;
    margin-top: 1rem;
}

.learn-more-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.learn-more-link a:hover {
    color: #0d5a8f;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .email-page {
        padding: 1rem 1rem;
    }
    
    .email-header {
        font-size: 1.75rem;
    }
    
    .email-text {
        font-size: 1rem;
    }
    
    .email-logo {
        display: none;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .email-header {
        font-size: 2.5rem;
    }
}
