/* Reset de márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general para el cuerpo de la página */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fa; /* Fondo suave para toda la página */
    color: #333; /* Color de texto predeterminado */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Centrar todo el contenido en la pantalla */
    align-items: flex-end;
    background: url("img16.png") no-repeat center center fixed;
    background-size: cover;
    align-items: center;

}

/* Contenedor del formulario */
.form-container {
    background-color: #ffffff62;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 31px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

/* Título principal */
h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Estilo para el mensaje de error */
.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

/* Estilo para el campo de entrada (input de email) */
input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Estilo para el botón de enviar */
button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilo para la imagen en la esquina superior izquierda */
img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1360px;
    height: 150px;
     
}

/* Estilo para el campo de selección de sede */
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Estilos responsivos para pantallas más pequeñas */
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        width: 90%;
        max-width: 100%;
    }

    h1 {
        font-size: 20px;
    }

    input[type="email"], select {
        font-size: 14px;
    }

    button[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }

    img {
        width: 40px; /* Ajusta el tamaño de la imagen en pantallas pequeñas */
    }
}
