/* --- Registration Page Specific Styles --- */

.register-page-container {
    max-width: 800px; /* A bit wider to accommodate the form */
}

.info-panel {
    text-align: left;
}

.info-panel h2 {
    text-align: left;
    color: #111; /* Black heading for inside a white card */
}

.info-panel .quick-read {
    list-style-type: '✅ ';
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.info-panel .quick-read li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.registration-form {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
}

.registration-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.registration-form .form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.form-error, .form-success {
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none; /* Hidden by default */
}

.form-error {
    background-color: #fce8e6;
    color: #a50e0e;
}

.form-success {
    background-color: #e6f9f0;
    color: #0d6a3d;
}