html{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.form__login{
    max-width: 900px;
    padding: 50px;
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.3); /* Fondo blanco casi transparente */
}
.form-group.text-center a{
    color: black !important;
    font-weight: bold;
}

body.bg__img-login {
    background: url(../img/fondoPerro.webp) no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    height: 100vh; /* asegura que ocupe la altura completa de la pantalla */
    margin: 0;
    padding: 0;
}


.cont__form{
    justify-content: left;
    margin-left: -20px; /* Ajusta el valor según sea necesario */
    background: transparent;
}

.form__login button[type=submit]{
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .bd-mobile{
        padding: 70px;
    }

    .cont__form{
        justify-content: center;
        align-items: center;
    }
}