@import url('https://fonts.googleapis.com/css?family=Open+Sans|Overpass+Mono:400,700&amp;display=swap');

.login {
	font-family: "Overpass Mono", monospace;
	display: flex;
    align-items: center;
    justify-content: center;
	background: #F7F7F7;
}

.login h1 a {
    background-image: url(../png/brainy-beaver-1-300x300.png);
    width: 140px;
    height: 140px;
    background-size: contain;
    margin-bottom: 8px;
}

.login #login_error, .login .message, .login .success {
    border-left: 3px solid;
    padding: 8px 16px;
    margin-left: 0;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: "Overpass Mono", monospace;
    font-weight: 800;
    font-size: 14px;
    width: 400px;
    box-sizing: border-box;
    display: block;
    color: #000;
}

#login {
    background: #fff;
    padding: 26px 24px 46px;
    border-radius: 30px;
    width: auto;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
}

.login form {
	background: none;
	border: 0;
	box-shadow: none;
	padding: 0;
	width: 400px;
}

#login form p {
    margin-bottom: 16px;
}

.login .submit .button-primary {
    float: none;
    width: 100%;
    font-size: 18px;
    font-family: "Overpass Mono", monospace;
    background: #002deb;
    border: 0;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 20px;
    height: auto;
    border-radius: 0;
	margin-top: 10px;
}

.login label {
	font-family: "Overpass Mono", monospace;
	font-weight: 700;
	color: #000;
}

.login form .input, .login input[type="text"] {
    font-size: 16px;
    width: 100%;
    padding: 6px 0;
    margin: 2px 6px 16px 0;
    font-family: "Open Sans", sans-serif;
    box-shadow: none;
    border-width: 0 0 2px 0;
    background: none !important;
    color: #6a6a6a;
	font-weight: 400;
	transition: all 0.2s linear;
}

.login form .input:focus, .login input[type="text"]:focus {
	border-color: #002deb;
}