/* Styling the content section */
.content-section {
    padding: 40px;
    background-color: #fff;
    max-width: 800px; /* Limiting the width */
    margin: 40px auto; /* Centering the section */
    border: 2px solid #fff; /* Adding a border */
    border-radius: 10px; /* Slightly rounding the corners */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

/* Centering and styling the form */
.centered-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* H1 styling */
.centered-form h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form group styling */
.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Checkbox and label styling */
#disclosure-label {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.5;
}

#disclosure-label input[type="checkbox"] {
    margin-right: 10px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    display: block; /* Makes the button take up the full width available */
    margin: 0 auto; /* This centers the block-level element */
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }

    .centered-form {
        max-width: 100%;
    }

    .form-group input {
        font-size: 1em;
    }

    button[type="submit"] {
        font-size: 1em;
    }
}
