.form-container {
    background-image: url('../images/kago-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: grid;
    place-items: center;
}

.form-container > div {
    width: 50%;
}

form {
    border-top: 5px solid var(--theme-color);
    border-radius: 5px;
}

.pass-container {
    position: relative;
}

.pass-container > #view-pw-btn {
    position: absolute;
    top: 20%;
    right: 5%;
}


#other-actions {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 780px) {
    .form-container > div {
        width: 70%;
    }
}

@media screen and (max-width: 650px) {
    .form-container > div {
        width: 85%;
    }

    #other-actions {
        display: block !important;
    }

    #other-actions > small {
        margin-bottom: 1% !important;
    }
}

@media screen and (max-width: 440px) {
    .form-container > div {
        width: 100%;
    }

    #other-actions {
        display: block !important;
    }

    #other-actions > small {
        margin-bottom: 1% !important;
    }
}