form {
    flex-direction: column;
    max-width: fit-content;
    margin: auto;
    background-color: #f6f6f6; /* Background color for the form */
    padding: 1.25rem; /* Optional: Add padding inside the form */
    border-radius: 0.5rem; /* Optional: Add rounded corners */
    align-items: center;
}


input[type="submit"] {
    margin-top: 1.25rem;
    padding: 0.625rem;
    border: 0.063rem solid #000;
    border-radius: 0.25rem;
    background-color: #d0f0d0;
    cursor: pointer;
    color: black; /* Text color for the submit button */
    display: flex;
    justify-content: center;
    width: 100%;

}


