#login {
    background: url(../img/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    height: 100vh;
}
.content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 100px;
}
.card{
    width: 130px;
    overflow: hidden;
}
.card img{
    width: 100%;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    #login{
        background: #00B0F0;
    }
    .content{
        gap: 30px;
    }
}

