body {
    background: url(../img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
}

.div-logo img {
    width: 10vw;
}

.div-text {
    text-align: center;
    color: white;
    font-size: 1.2vw;
    padding: 1vw;
}

.div-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.div-inputs .input {
    width: 20vw;
    margin: .3vw 0;
}

.div-inputs input {
    background-color: white;
    border: none;
    font-size: 1.2vw;
    padding: 1vw;
    width: 100%;
    margin: 0;
    color: black;
    box-sizing: border-box;
}

.div-inputs .password-field-wrapper {
    width: 100%;
    margin: 0;
}

.div-button {
    margin: .3vw;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
    body {
      background: url(../../img/bg-mob.png);
      background-size: cover;
    }
    .div-logo, .div-inputs, .div-button {
        margin-bottom: 2vh;
    }
    .div-logo img {
        width: 40vw;
    }
    .div-text {
        font-size: 4.5vw;
        padding: 0;
    }

    .div-inputs .input {
        width: 70vw;
    }

    .div-inputs input {
        padding: 3vw;
        font-size: 4.5vw;
    }
}