/* Reset a few defaults */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Center the subscription box */
.subscription-section {
    max-width: 420px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.subscription-section h2 {
    color: #009688; /* Accent color */
    margin-bottom: 0.5rem;
}

.sub-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form styles */
.subscription-form input {
    width: 100%;
    padding: 12px 24px 12px 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    padding-right: 5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscription-form input:focus {
    border-color: #009688;
    box-shadow: 0 0 0 3px rgba(0,150,136,0.15);
    outline: none;
}

/* Button styles */
.subscription-form button {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #009688;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.1s ease;
}

.subscription-form button:hover {
    background: #00796B;
    transform: translateY(-1px);
}

/* Legal text */
.form-legal {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

/* Messages */
.form-messages {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.form-messages li {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.form-messages li.success { background: #e6f7f3; color: #00796B; }
.form-messages li.error { background: #fdecea; color: #d32f2f; }
