 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/Fondos/Bienvenido.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}
 .form-buttons {
     position: absolute;
     top: 20px; /* Ajuste de posición vertical */
     right: 20px; /* Ajuste de posición horizontal */
 }
 .form-buttons button {
     width: auto; /* Tamaño automático del botón */
     padding: 8px 16px; /* Espaciado interno más pequeño */
     border: none;
     border-radius: 6px;
     background-color: #007bff;
     color: #fff;
     font-size: 14px; /* Fuente más pequeña */
     cursor: pointer;
     font-weight: bold;
 }
 .form-buttons button:hover {
     background-color: #0056b3;
 }
