/* custom-form.css */

/* .container.custom-form-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: bold;
}

.form-control {
    margin-bottom: 10px;
}

.btn-custom-submit {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-custom-submit:hover {
    background-color: #0056b3;
    border-color: #0056b3;
} */


.required-field::after {
    content: "*";
    color: red;
    margin-left: 0.25em;
    font-size: 1.2em; /* Adjust the size of the asterisk if needed */
}

.required-asterisk {
    color: red;
}

