body {
    font-family: Arial, sans-serif;
    /* margin: 10px; */
}

form {
    max-width: 900px;
    margin: auto;
}

label {
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-fields {
    display: flex;
    gap: 10px; /* Space between input fields */
}

.contact-fields input {
    flex: 1; /* Make the inputs evenly sized */
    padding: 8px; /* Optional: add some padding for better UX */
    border: 1px solid #ccc; /* Optional: add border styling */
    border-radius: 4px; /* Optional: add rounded corners */
}
/* 
.form-group label {
    display: block;
    margin-bottom: 8px; 
} */

input {
    margin-bottom: 10px; /* Space between rows of inputs */
}

.error-message {
    color: #dc3545;
    font-size: 80%;
    margin-top: 0.25rem;
    display: block;
}

.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
