html, body {
    height: 100%;  
}
    
body {
    margin:0;
    background-position: center bottom;
    background-repeat: repeat-y;
    background-size: cover;
    background-image: url('background.jpg');
}

.body-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

html, body, .app-full-height {
    height:100%;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

.splash-screen {
    height:100%;
}

.box-page {
    background-color: white;
    max-width: 420px;
    width : 100%;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-sizing: border-box;
}

.logo {
    margin-right: 10px;
    vertical-align : middle;
    max-height: 60px;
}

.box-page h1 {
    margin: 0;
    padding: 0;
    font-size: 1.64rem;
    line-height: 110%;
    color: rgba(0,0,0,0.87);
    font-weight: 400;
}

.box-header {
    margin-bottom: 40px;
}

.full-width{
    width: 100%;
}

.app-row {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.app-full-width {
    width: 100%;
}