@import url(https://fonts.googleapis.com/css?family=Lato:300);

body {
    background: url('/static/images/background_lab_mini.jpg') no-repeat center fixed;
    background-size: cover;
}

.login {
    width: max-content;
    text-align: left;
    padding: 10% 0 0;
    margin: auto;
}

.form {
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: left;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

input {
    font-family: "Lato", sans-serif;
    outline: 0;
    background-color: #e7e4e4;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

input#submit_button {
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background-color: #262725;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

.form input#submit_button:hover,
.form input#submit_button:active,
.form input#submit_button:focus {
    background-color: #3d3d3d;
}

.form .registration-form {
    display: none;
}
