css

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

body {
    background-color: #cca889;
    font-family: 'Fira Sans Condensed', sans-serif;
    color: #4d2005;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #fff7f1;
    border: 2px solid #a87e62;
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

input,
button {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #a87e62;
    font-size: 1rem;
    font-family: inherit;
}

select {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #a87e62;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff7f1;
    color: #4d2005;
    transition: border-color 0.3s ease;
    flex: 1;
}

select:focus {
    outline: none;
    border-color: #7c5948;
    background-color: #fceee0;
}

input:focus {
    outline: none;
    border-color: #7c5948;
}

button {
    background-color: #a87e62;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #7c5948;
}