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;
}

.profile-setting-pic-container {
    min-width: 200px;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-setting-pic {
    background-color: red;
    width: 140px;
    height: 140px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-setting-pic [class*="material-icons"] {
    font-size: 140px;
}

.profile-info-detail {
    display: flex;
    flex-wrap: wrap;
}

.profile-info-detail-block {
    width: 400px;
    flex-grow: 1;
}

@media only screen and (max-width: 520px) {
    .login-form {
        width: 100%;
    }
}