.form-body {
    font-family: Arial, sans-serif;
    margin: 20px;
    /* Overall margin for the body */
}

.form-container {
    width: 80%;
    /* Adjust as needed */
    margin: 20px auto;
    /* Center the form with auto margins */
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 20px;
    /* Margin between form sections */
    padding: 10px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 10px;
    /* Margin between form groups */
}

label {
    display: block;
    /* Ensure labels are above inputs */
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
    width: 100%;
    /* Make inputs full width of their container */
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
}

input[type="checkbox"] {
    margin-right: 5px;
}

.radio-group {
    display: inline-block;
    margin-right: 10px;
}


/* Style for buttons */

.button-container {
    text-align: center;
    margin-top: 20px;
}

.button-container button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-container button:hover {
    background-color: #367C39;
}