body {
    background-color: #f0f2f5;
}

/* Full page center layout */
.form_section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Meta-style card container */
.form_section-container {
    width: 88%;
    max-width: 700px;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1c1e21;
}

/* Header */
.form_section-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1c1e21;
}

.form_section-container p {
    font-size: 0.95rem;
    color: #606770;
    margin-bottom: 1.5rem;
}

/* Input Field */
form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dddfe2;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: #1c1e21;
    background-color: #f5f6f7;
    margin-bottom: 1rem;
    transition: border 0.2s ease;
}

form input[type="email"]:focus {
    border: 1px solid #1877f2;
    outline: none;
    background-color: #fff;
}

form input[type="email"]:hover {
    border: 1px solid #1877f2;
    outline: none;
    background-color: #fff;
}

/* Button */
.form_section-container button {
    width: 100%;
    padding: 0.7rem;
    background-color: #1877f2;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form_section-container button:hover {
    background-color: #166fe5;
}

/* Alert Messages */
.alert_message {
    font-size: 0.85rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.alert_message.error {
    background-color: #ffe6e6;
    color: #d93025;
}

.alert_message.success {
    background-color: #e6f4ea;
    color: #188038;
}

.form_footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form_footer a {
    color: #1877f2;
    font-size: 0.9rem;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.form_footer a:hover {
    text-decoration: underline;
}
