/* Fondo general */
body {
    background-color: rgb(255, 220, 229); /* rosa pastel */
    font-family: 'Arial', sans-serif;
    color: #5a4750; /* texto café oscuro */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 50px 20px;
}

/* Formulario */
form {
    background-color: #f5e0d4; /* café clarito */
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Etiquetas */
label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #5a4750; /* café oscuro */
}

/* Inputs y select */
input[type="text"],
input[type="number"],
input[type="submit"],
select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #d9bda7; /* borde café suave */
    border-radius: 10px;
    background-color: #fdf2ec; /* café muy clarito */
    font-size: 16px;
    color: #5a4750;
    box-sizing: border-box;
}

/* Placeholder */
::placeholder {
    color: #a87f6f; /* café medio */
}

/* Botón de envío */
input[type="submit"] {
    background-color: #c9a27e; /* café cálido */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #b58a63; /* café un poco más oscuro al pasar el mouse */
}

/* Select estilo adicional */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
