#outer {
    height: 100vh;
}

.background {
    height: 100vh;
    width: 100vw;
    background-image: url('/static/simply_amazed/img/section-3-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.parallax-window {
    height: 100vh;
    width: 100vw;
}

.register {
    background-color: #006699D0;
    position: absolute;
    padding: 20px;
    top: 50vh;
    left: 50vw;

    ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    border-radius: 10px;

    color: white;
    text-align: center;
}

.login-form {
    text-align: left;
}

#submit {
    padding-left: 3%;
    padding-right: 3%;    
    background-color: var(--button-color);
    color: var(--button-text);
}


#submit:hover {
    background-color: var(--button-hover-color);
    color: var(--button-hover-text);
}