html, body {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg {
    /* The image used */
    background-image: url("/images/login-bg.jpg");
  
    /* Full height */
    height: 100%;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(60, 62, 196, 0.3);
    background-image: linear-gradient(rgba(85, 55, 167, 0.3),rgba(38, 7, 110, 0.2));
}

.login {
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}