/* Custom Form Styles */
.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #5a5c69;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #d1d3e2;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    height: auto;
    color: #333;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

select.form-control {
    line-height: 1.5;
}

select.form-control option {
    color: #333;
}

.form-section {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4e73df;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3e6f0;
}

.required-label::after {
    content: " *";
    color: #e74a3b;
}

.submit-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.input-help {
    font-size: 0.75rem;
    color: #858796;
    margin-top: 0.3rem;
}
