/* Estilos generales del cuerpo */
body {
    background-image: url(../imagenes/adquisitexfondo.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    font-family: Arial, sans-serif; /* Tipo de fuente */
    background-color: #f4f4f4; /* Color de fondo */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal */
.contenedor {
    background-color: #001730;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

/* Estilos para el título */
h1 {
    color: #fff;
    margin-bottom: 20px;
}

/* Estilos para el formulario */
form {
    display: flex;
    flex-direction: column;
}

input[type="email"], input[type="submit"] {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

input[type="submit"] {
    background-color: #5c67f2;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #5058cc;
}

/* Estilos para mensajes de error */
.error {
    background-color: #79f98c;
    color: #721c24;
    border-color: #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

.error ul {
    list-style: none;
    padding: 0;
}
