* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #a7c7a7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #f4e1c1;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    border: 2px solid #4e8f3f;
    text-align: center;
}

h2 {
    color: #4e8f3f;
    font-size: 2em;
    margin-bottom: 15px;
}

label {
    display: block;
    color: #3d3d3d;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 2px solid #4e8f3f;
    border-radius: 5px;
    background-color: #fff8e1;
    font-size: 1em;
}

.check,
.radio {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}


button {
    width: 100%;
    padding: 12px;
    background-color: #4e8f3f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #35753d;
}

.reset-btn {
    width: 100%;
    padding: 12px;
    background-color: #d18f41;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
}

.reset-btn:hover {
    background-color: #b77d3e;
}

textarea {
    height: 100px;
    resize: none;
}