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

/* 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="button"],
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;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

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

/* Inputs de botón */
input[type="button"] {
    background-color: #c9a27e; /* café cálido */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

input[type="button"]:hover {
    background-color: #b58a63; /* café un poco más oscuro */
    transform: scale(1.03);
}
