body {
    background: linear-gradient(45deg, #fdfdfd, #b3e8f6) no-repeat fixed;
    background-size: cover;
    color: #ffffff;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 3% 4%;
    width: 90%;
    /* Modificado para ocupar el 90% del ancho en dispositivos móviles */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 459px;
}

h2 {
    color: #000d48;
    font-size: 24px;
}

.let-logo {
    color: #020202;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'DM Serif Display', serif;
}

.password-icon {
    float: right;
    position: relative;
    margin: -25px 10px 0 0;
    cursor: pointer;
    color: #000ff0;
}

.comenzar {
    color: #6e6f70;
}

.logo-container {
    display: flex;
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    align-items: center;
}

.logo-container img {
    max-width: 100px;
    height: 100px;
    width: 150px;
    margin-right: 10px;
}

.logo-container p {
    font-size: 35px;
    margin-bottom: 0;
}

form {
    margin-top: 20px;
}

label {
    color: #036EA4;
    font-size: 20px;
    font-weight: bold;
}

.form-control {
    border-color: #000ff0;
}

.btn-primary {
    font-weight: bold;
    color: rgb(253, 253, 253);
    background-color: #000970;
    border-color: #0a945f;
    width: 100%;
}

.btn-primary:hover {
    background-color: #31bca2;
    border-color: #0a945f;
}

.volver {
    padding: 5px;
}

.eti-vol {
    color: rgb(0, 0, 0);
}

.eti-vol:hover {
    color: #000ff0;
}

/* Media Query para dispositivos más pequeños */
@media (max-width: 768px) {
    .container {
        width: 100%;
        /* Cambiar el ancho al 100% en dispositivos más pequeños */
    }

}