* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #2e2e2e;
    color: #f0f0f0;
    line-height: 1.6;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 0 20px;
    flex-direction: column;
}

fieldset.form-container {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
    padding: 30px;
    border: 2px solid #ca5e00;
    border-radius: 12px;
    background-color: #424242;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h1 {
    color: #ca5e00;
    font-size: 2.8em;
    margin-bottom: 30px;
}

h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #d1cfd1;
}

table.form-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th {
    background-color: #ca5e00;
    color: white;
    padding: 12px;
    text-align: left;
}

td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #616161;
}

input[type="text"], input[type="radio"], input[type="checkbox"], select, textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #ca5e00;
    border-radius: 5px;
    margin-top: 8px;
    font-size: 1.1em;
    color: #333;
    background-color: #f1f1f1;
}

textarea {
    resize: vertical;
}

input[type="submit"], input[type="reset"] {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #ca5e00;
}

a {
    color: #ca5e00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

input[type="checkbox"], input[type="radio"] {
    accent-color: #ca5e00;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

label {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

form {
    margin-top: 30px;
}

table.data-table {
    width: 80%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #555;
}

th {
    background-color: #ca5e00;
    color: white;
}

td {
    background-color: #616161;
}

tr:nth-child(even) {
    background-color: #757575;
}

a {
    color: #ff9800;
}

a:hover {
    text-decoration: underline;
}