/* ========== STYLE PAGE PUBLIQUE D'ABONNEMENT ========== */
/* Modifie les couleurs ici pour personnaliser */
:root {
    --primary:   #2c3e50;
    --accent:    #e74c3c;
    --success:   #27ae60;
    --bg:        #f8f6f1;   /* Couleur de fond de la page */
    --white:     #ffffff;
    --border:    #dee2e6;
    --text:      #2c3e50;
    --muted:     #6c757d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Georgia', serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 16px;
}

.subscribe-card {
    background: var(--white); border-radius: 16px; padding: 48px 40px;
    max-width: 520px; width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    text-align: center;
}

.subscribe-card .icon { font-size: 3rem; margin-bottom: 16px; }

.subscribe-card h1 {
    font-size: 1.8rem; color: var(--primary);
    margin-bottom: 10px; font-family: 'Georgia', serif;
}

.subscribe-card .tagline {
    color: var(--muted); font-size: 1rem; line-height: 1.6;
    margin-bottom: 30px;
}

.form-row { display: flex; flex-direction: column; gap: 12px; }
.form-row input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 1rem; font-family: 'Georgia', serif;
    transition: border-color 0.2s;
}
.form-row input:focus { outline: none; border-color: var(--primary); }

.btn-subscribe {
    width: 100%; padding: 14px;
    background: var(--accent); color: white; border: none;
    border-radius: 8px; font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: 'Georgia', serif;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
}
.btn-subscribe:hover { background: #c0392b; }
.btn-subscribe:active { transform: scale(0.98); }

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.95rem; }
.alert-ok  { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-err { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.checkbox-label {
    display: flex; align-items: flex-start; gap: 10px;
    text-align: left; font-size: 0.85rem; color: var(--muted);
    cursor: pointer; line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: auto; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--accent);
}

.footer-note {
    margin-top: 24px; font-size: 0.8rem; color: var(--muted);
    line-height: 1.5;
}
.footer-note a { color: var(--muted); }
