/**
 * Create Account Page Styles
 * Containers (.create-container-wide / .create-box), .page-header,
 * .form-section, .section-title come from forms.css / portal-common.css.
 */

.form-extended {
    gap: 0;
}

.optional-badge {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: normal;
}

/* Help Text */
.help-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-3);
}

.form-actions button {
    min-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions button {
        width: 100%;
    }
}
