form {
max-width: 400px;
margin: 1em 0;
display: flex;
flex-direction: column;
gap: 0.75em;
}
label {
font-weight: 600;
}
input,
textarea {
padding: 0.5em;
border: 1px solid #ccc;
border-radius: 4px;
font-family: inherit;
font-size: 1em;
resize: vertical;
}
button {
padding: 0.6em 1.2em;
background-color: #007acc;
color: white;
border: none;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
}
button:hover {
background-color: #005fa3;
}