/* Estilos base de inputs */
input, textarea {
    width: 100%;
    padding: 0.6rem;
    margin: 0.5rem 0;
    border-radius: 0.3rem;
    border: 0.1rem solid #333;
    background-color: var(--fondo-oscuro);
    color: var(--color-texto);
}

/* El contenedor del formulario */
.formulario {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    align-items: center;
}

.formulario input {
   width: 30%;
   height: 2rem;
   padding: 0.5rem;
   text-align: center;
}

.formulario textarea {
    width: 50%;
    height: 7rem;
}

.fila {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    width: 100%;
}

/* Botones y sus estados */
button {
    background-color: var(--borde);
    color: white;
    border: 0.1rem solid #333;
    padding: 0.7rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 0.6rem;
}

button:hover {
    background-color: #333;
}

.formulario button {
    width: 10rem;
    margin-top: 0.6rem;
}
