/* --- REGISTRATION PAGE SPECIFIC STYLES --- */
/* Global styles are now in global.css */

main {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* --- Layout Container --- */
main > .container {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    align-items: flex-start;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Columns --- */
.left-column {
    flex: 1;
    border: 1px solid var(--border-color);
    background-color: #fff;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between benefits box and login area */
}

/* --- Section Headers --- */
.section-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 18px;
    color: var(--heading-color);
    border-bottom: 1px solid var(--border-color);
}

/* --- Content Areas --- */
.content-box {
    padding: 20px;
}

.benefits-box {
    border: 1px solid var(--border-color);
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 20px;
}

main label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--heading-color);
}

main input[type="text"],
main input[type="email"],
main input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
}

/* Focus state for better UX */
main input:focus,
main textarea:focus,
main select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Helper text */
.helper-text {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    font-weight: normal;
}

/* Checkbox styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--button-blue);
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--button-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #001a6e;
}

/* --- List Styles (Right Column) --- */
main ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.5;
}

main li {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Nested List styling */
main ul ul {
    margin-top: 5px;
    list-style-type: circle; /* Hollow bullet points */
    color: #555;
}

main ul ul li {
    margin-bottom: 5px;
}

/* Helper text styles */
.list-title {
    font-weight: normal;
    color: #000;
}

.sub-text {
    display: block;
}

/* --- Login Area --- */
.login-area {
    text-align: center;
    padding-top: 10px;
}

.login-area p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.login-link {
    font-size: 24px;
    color: var(--button-blue);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--primary-yellow);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    main > .container {
        flex-direction: column;
    }

    main {
        padding: 20px 10px;
    }
}