body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.container {
    width: 60%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #888;
    text-align: center;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: table;
    width: 80%;
}

.form-table {
    width: 80%;
    border-collapse: collapse;
    margin: 10px 0;
}

.form-table td {
    padding: 10px;
    text-align: left;
}

input, select, button, textarea {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
}

input:focus, select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

small {
    color: #888; /* Light grey subnotes */
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

fieldset {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

legend {
    font-weight: bold;
}

button {
    background-color: #ff9800; /* Orange button */
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #e68900;
}

