
/* Form container styling */
form {
    width: 100%;
    max-width: 600px; /* Slightly narrower to fit the page better */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Reduce space between form elements */
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px; /* Reduce the gap between fields */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Center the form title */
h2, p {
    text-align: center;
    color: #333;
    margin-bottom: 20px; /* Reduce margin to tighten the layout */
}

/* Adjust the breadcrumbs */
.breadcrumbs {
    margin-bottom: 10px; /* Less space between breadcrumbs and form */
}

/* Checkbox container styling for modules and add-ons */
.checkbox-container {
    display: grid;
    grid-template-columns: 1fr auto; /* Label on the left, checkbox on the right */
    gap: 10px 15px; /* Row and column gaps */
    align-items: center; /* Center align items vertically */
    margin-bottom: 25px;
    margin-top: 15px;
}

/* Individual checkbox item styling */
.checkbox-container div {
    display: contents; /* Let the grid handle the layout */
}

/* Checkbox input styling */
.checkbox-container input[type="checkbox"] {
    justify-self: end; /* Align checkbox to the right */
    margin: 0; /* Remove extra margin */
}




