@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700);
* {
    margin: 0;
    padding: 0;
    font-family: Lato;
}

header {
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    padding: 20px 0;
    max-width: 900px;
    margin: auto;
}
.logo a img{
    width: 377px;
    cursor: pointer
    
}

input[type="text"] {
    text-transform: lowercase;
}

.wrapper {
    max-width: 900px;
    margin: auto;
}

.page-title {
    padding: 20px;
    background: #e9edeb;
    color: #4a4d4c;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.page-title .title-heading {
    max-width: 900px;
    margin: auto;
}

.page-title .title-heading h1 {
    font-weight: 300;
}

.wrapper p {
    text-align: center;
    color: #f44647;
}

.login {
    max-width: 300px;
    margin: auto;
    margin-top: 20px;
    padding: 10px;
    background: rgb(255,255,255);
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 1s;
}

.login form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ddd;
    font-size: 13.333px;
}

.login form button {
    display: block;
    width: auto;
    margin: auto;
    margin-top: 10px;
    padding: 13px 18px;
    background: #e9edeb;
    border: none;
    color: #5d5e5d;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    font-size: 13.333px;
    font-weight: 500;
    cursor: pointer;
}

.alert {
    margin: 10px auto 0px auto;
    padding: 20px;
    background: #f44647;
    color: #fff;
    text-align: center;
    transition: all 1s;
}