.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
}



main {
    background-color: rgb(228, 228, 228);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

fieldset:first-of-type {
    white-space: nowrap;
}

fieldset {
    border: 1px solid #898989;
    padding: 15px;
    border-radius: 5px;
    background-color: #fcfcfc;
}

.opcion {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3076d1;
}

.botones {
    display: flex;
    justify-content: center;
    gap: 15px;

}

button {
    background-color: blue;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

select {
    padding: 10px;
    border-radius: 5px;
}

select option {
    padding: 10px;
    background-color: white;
    color: #333;
}

@media screen and (max-width:600px) {
    .botones {
        flex-direction: column;
    }
}