@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

body {
    font-family: Raleway, sans-serif;
    color: #666;
    height: 100vh;
}
main{
    width: 100%;
    height: calc(100vh - 7em);
    display: flex;
    justify-content: center;
    align-items: center;
}
.login h2,
.login p,
.login a {
    text-align: center;
}

.login a {
    text-decoration: none;
    font-size: .8em;
}

.login a:hover {
    text-decoration: underline;
}

h1{
    align-self: center;
    text-align: center;
}
h1 > a{
    color: #009dff;
}

.login {
    padding: 40px 50px;
    max-width: 500px;
    min-width: 500px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 1px 1px 5px #666;
}
.login input {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 10px 0;
    padding: 14px 12px;
    font-size: 16px;
    border-radius: 2px;
    font-family: Raleway, sans-serif;
}

.login input[type=text],
.login input[type=password] {
    border: 1px solid #c0c0c0;
    transition: .2s;
}

.login input[type=text]:hover {
    border-color: #2666dc;
    outline: none;
    transition: all .2s ease-in-out;
}

.login input[type=submit] {
    border: none;
    background: #32b524;
    color: white;
    font-weight: bold;
    transition: 0.2s;
    margin: 20px 0px;
}

.login input[type=submit]:hover {
    background: #30c51f;
}

.login h2 {
    margin: 20px 0 0;
    color: #EF5350;
    font-size: 28px;
}

.login p {
    margin-bottom: 40px;
}

.links {
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #c0c0c0;
    margin-bottom: 10px;
}

.links a {
    display: table-cell;
    padding-top: 10px;
}

.links a:first-child {
    text-align: left;
}

.links a:last-child {
    text-align: right;
}

.checkboxRememerMeWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    input{   
        transform: scale(1.3);
    }
}

@media (max-width: 650px) {
    .login {
        min-width: 100%;
    }

}

