body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    color: #333;
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #2c3e50;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="number"],
input[type="password"],
select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.required:after {
    content: " *";
    color: red;
}
.btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}
.btn:hover {
    background: #2980b9;
}
.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.btn-back {
    background: #95a5a6;
}
.btn-back:hover {
    background: #7f8c8d;
}
.btn-next:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}
.address-container {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: white;
}
.address-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}
.remove-btn:hover {
    background: #c0392b;
}
.add-more-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}
.add-more-btn:hover {
    background: #27ae60;
}
.endorsement-options, .experience-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.endorsement-option, .experience-option {
    display: flex;
    align-items: center;
}
.endorsement-option input, .experience-option input[type="checkbox"] {
    margin-right: 5px;
}
.error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}
input:invalid, select:invalid {
    border-color: #e74c3c;
}
.experience-section, .accidents-section, .violations-section, .forfeitures-section, .employment-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}
.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.accident-details, .violation-details, .experience-details {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 5px;
}
textarea {
    resize: vertical;
}
.experience-option {
    flex: 1 1 200px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.experience-details {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
.experience-option input[type="checkbox"]:checked ~ .experience-details {
    display: block;
}
.signature-pad {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    margin: 20px 0;
}
.signature-controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.disclosure-item {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}
.disclosure-item label {
    display: flex;
    align-items: center;
}
.disclosure-item input[type="checkbox"] {
    margin-right: 10px;
}
.notice-box {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
}
