/* ============================================================
   register.css — registration page specific styles
   ============================================================ */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

h1 {
    margin-bottom: 10px;
}

.subtitle {
    color: var(--green-muted);
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: var(--green-muted);
    font-size: 14px;
}

.footer a {
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 600;
}

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

.age-confirm-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--green-text);
    line-height: 1.5;
    margin-bottom: 0;
}

.age-confirm-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green-mid);
}

.age-confirm-label a {
    color: var(--green-mid);
    text-decoration: underline;
}
