/* Modal Background & Padding */
#modal-3 .modal-content {
    border-radius: 15px;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title */
#modal-3 .request-form-title h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

#modal-3 .request-form-title p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form Inputs */
#modal-3 input.form-control {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 8px;
    border: 1.8px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
}

#modal-3 input.form-control:focus {
    border-color: #5a67d8;
    box-shadow: 0 0 8px rgba(90, 103, 216, 0.35);
    outline: none;
}

/* Submit Button */
#modal-3 .btn.btn--theme {
    background-color: #5a67d8;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#modal-3 .btn.btn--theme:hover {
    background-color: #434aa8;
}


#modal-3 .btn-close:hover {
    opacity: 1;
}

/* Loading / Message */
#modal-3 .request-form-msg {
    font-size: 14px;
    color: #555;
    min-height: 20px;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
    #modal-3 .modal-content {
        padding: 20px 15px;
    }
}
