/******************** Register ********************/

#register {
    max-width: 450px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}


#registerTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brown);
}

#registerSubtitle {
    font-size: 16px;
    margin-bottom: 32px;
}

/* Email Form */
#registerEmailForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

#registerEmailForm .input {
    text-align: center;
    font-size: 16px;
    padding: 16px;
}

#registerEmailForm .button {
    max-width: none;
}

/* Consent */
#registerConsent {
    font-size: 13px;
    color: #666;
    margin: 0;
}

#registerConsent a {
    color: var(--brown);
    text-decoration: underline;
}

#registerConsent a:hover {
    text-decoration: none;
}

/* Features */
#registerFeatures {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.registerFeaturesItem {
    font-size: 16px;
}

/* Link */
#registerLink {
    font-size: 16px;
    text-align: center;
}

#registerLink a {
    color: var(--brown);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    #register {
        padding: 40px 16px;
    }

    #registerTitle {
        font-size: 28px;
    }

    #registerFeatures {
        flex-direction: column;
        gap: 8px;
    }
}
