/* Estilos generales para toda la web */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

/* Contenedor central para los formularios */
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Títulos */
h1 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Mensaje de error */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Estilos de los campos de formulario */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Estilo para inputs y selects */
input[type="text"], input[type="password"], input[type="number"], select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Estilo para botones */
input[type="submit"], button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

/* Estilo hover para botones */
input[type="submit"]:hover, button:hover {
    background-color: #45a049;
}

/* Enlace de cerrar sesión */
a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

a:hover {
    color: #45a049;
}

/* Estilo para los formularios de solicitudes */
form {
    margin-top: 20px;
}

#producto-info {
    background-color: #f0f8ff;
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
}

#producto-info p {
    margin: 0;
}
