#login-wrapper{
    position: absolute;
    background: #FFF;
    width: 600px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#form-login{
    width: 100%;
    padding: 0 3em;
}
#form-login input{
    height: 55px;
    box-shadow: none;
    background: #FFFFFF;
    border: 1px solid #B0B0B0;
    box-sizing: border-box;
    border-radius: 4px;
}
#login-logo{
    margin-bottom: 50px;
    height: 90px;
}
.button-green{
    padding: 1.5em 5em;
    background: linear-gradient(180deg, #289749 0%, #24743C 100%);
    border-radius: 4px;
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
}
.button-green:hover{
    cursor: pointer;
}
.w-100{
    width: 100%;
}
#login-background, #signup-background{
    background: url(/img/login.jpg) no-repeat top right;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#signup-background{
    background: url(/img/signup.jpg) no-repeat top right;
}

.copyright {
    color: #9e9e9e;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
	#login-wrapper{
		width: 100%
	}
}
