
.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.formulario input, textarea, select {
    margin-bottom: 10px;
    width: 300px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

.formulario label {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

.formulario h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}