body {
    background: url('../documentos/imagen7.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 400px; /* Hace que el formulario sea más ancho */
    margin: 50px auto;
    padding: 25px;
    background: rgba(1, 4, 81, 0.2); /* Un poco más opaco */
    box-shadow: 0px 0px 10px rgba(228, 220, 220, 0.726);
    border-radius: 10px;
    text-align: center;
}

input, select, button {
    width: 90%;
    margin: 10px 0;
    padding: 12px; /* Un poco más de padding */
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #007BFF;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

h2{
    color: rgba(24, 205, 229, 0.786);
}