body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0F4A86;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.login-container {
    background-image: url('../img/fondo-login-temporal.png');
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    width: 600px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    align-items: center;
}

.login-content{
    padding: 20px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
}

.logo{
    width: 12rem;
}

.redirection-links{
    color: #0F4A86 !important;
}

.login-img{
    width: 2.5rem !important;
}

.login-footer {
    background-color: #0F4A86; /* Azul oscuro para que contraste con el fondo */
    color: #ffffff; /* Texto blanco */
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    font-size: 0.7rem;
    max-width: fit-content;
    margin: 0 auto;
}

.subtitle{
    color: #0F4A86;
    
}

.subtitle-form{
    color: #0F4A86;
    font-size: 1rem;
}

.form-text{
    font-size: 0.6rem !important;
}

.btn-primary{
    background-color: #0F4A86 !important;
    border-color: #0F4A86 !important;
    font-size: 0.8rem !important;
}

.btn-primary:hover{
    background-color: #31679d !important;
    border-color: #31679d !important;
}

.orange{
    color: #D66B26;
}

@media (max-width: 768px) {
    .login-container {
        padding: 15px;
        max-width: 100%; /* Ancho completo en pantallas pequeñas */
    }

    .login-content {
        padding: 10px;
    }

    .logo {
        max-width: 10rem; /* Ajusta el tamaño del logo en pantallas pequeñas */
    }

    .login-footer {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
        
    }

    .login-img{
        width: 2rem !important;
    }
}

@media (max-width: 480px) {
    .login-img {
        width: 1.5rem !important; /* Ajusta el tamaño de los iconos en pantallas pequeñas */
    }

    .subtitle{
        font-size: 0.8rem;
    }

    .login-footer {
        font-size: 0.5rem;
        padding: 0.3rem 0.7rem;
    }

    .redirection-links {
        font-size: 0.8rem;
    }

    .logo{
        width: 7rem;
    }
    
    .btn-primary{
        background-color: #0F4A86 !important;
        border-color: #0F4A86 !important;
        font-size: 0.5rem !important;
        font-weight: 600;
    }
}
