 @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap');
         .login-box {
    /* background: url(https://imgur.com/tDe2CXa.jpg) no-repeat center center; */
    background: url(https://img.freepik.com/vector-gratis/fondo-verde-amarillo-abstracto_698452-563.jpg?semt=ais_hybrid) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 100px;
} 

/* Consulta de medios para dispositivos móviles */
    @media (max-width: 768px) {
        .login-box {
            background: url(https://imgur.com/T4E4B9T.jpg) no-repeat center center;
            background-size: cover;
            height: 40%; /* Hace que el login box ocupe la mitad de la pantalla */
            justify-content: center; /* Centra verticalmente el contenido */
        }

        .login-box h1 {
            display: none;
        }
    }

        .login-container {
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 60px -5px rgba(0, 0, 0, 0.1);
            /*max-width: 400px;*/
            width: 30%;
        }


        .header-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 700;
            color: #333;
        }

        .form-control {
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .btn-primary {
            background-color: #3BC3FF;
            border-color: #31c0ff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        h1 {
                display: flex;
                text-align: center;
                margin: 3% 0 5% 0;
                font-family: 'Berlin Sans FB', sans-serif;
                text-transform: uppercase;
                font-size: 55px;
                color: #E9C817;
                text-shadow: 
                    4px 5px 0 #355741,  
                    4px 5px 0 #355741,
                    -1px 1px 0 #355741,
                    1px 1px 0 #355741;
            }

        @media only screen and (max-width: 767px) {
            .header-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .login-container {

                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .footer {
            text-align: center;
            margin-top: 20px;
            font-size: 10px;
            color: #333;
        }

        