body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-image: url('/asset/img/background.png');
}

.wrapper {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    box-sizing: border-box;
}

.container {
    color: #16234f;
    font-size: 14px;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px #0000000F;
    border-radius: 12px;
    padding: 40px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 140px;
    height: 140px;
}

.login-form {
    width: 500px;
}

.login-form .form-group {
    max-width: 300px;
}

@media only screen and (max-width: 520px) {
    .login-form {
        width: 100%;
    }
}