body {
    background-color: #ffffff;
    margin: 0;
    background-image: url('../Source/img/fondo.jpg'); /* Reemplaza 'URL_DE_TU_IMAGEN' con la URL de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}

.navbar {
    background-color: #ffffff;
    color: white;
}

.login-container {
    margin-top: 70px;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.7); /* Fondo del formulario con opacidad */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo img {
    max-width: 100%;
    margin-bottom: 20px;
}

.footer {
    background-color: #ffffff;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
}