.form-label {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease-in-out;
}
.form-label.required::after {
    content: " *";
    color: #e74c3c;
    font-weight: 700;
    margin-left: 3px;
}