/* --- Form Styles --- */
.form-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.kyc-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.kyc-form h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
}

.kyc-form .form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.kyc-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.kyc-form legend {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box; /* Important for padding and width */
}

.form-group textarea {
    resize: vertical;
}

.radio-group label, .checkbox-group label {
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

.radio-group input, .checkbox-group input {
    margin-right: 10px;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.form-footer p {
    color: #666;
    font-style: italic;
}

.form-footer .cta-button {
    width: 100%;
    max-width: 400px;
    padding: 18px;
    font-size: 1.6rem;
}