* {
  	box-sizing: border-box;
  	font-family: roboto, oxygen, Arial, sans-serif;
  	font-size: 16px;
}

body {
  	background-color: #555555;
}

.login {
  	width: 492px;
  	background-color: #ffffff;
  	margin: 100px auto;
}

.header {
    border-top: 2px solid #9e2b2f;
    border-bottom: 2px solid #9e2b2f;
    box-shadow: 0 -8px 0 #ffffff;
}

.login h1 {
  	text-align: center;
  	color: #000000;
  	font-size: 24px;
    padding: 4px 0 0 0;
}

.login h2 {
  	text-align: center;
  	color: #000000;
    font-weight: 100;
  	font-size: 16px;
    padding: 0 0 10px 0;
}

.login p {
    margin-left: 36px;
    margin-bottom: -6px;
    color: #000000;
    font-weight: 100;
}

.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: left;
  	padding-top: 20px;
}

.login form input[type="password"], 
.login form input[type="text"] {
  	width: 420px;
  	height: 36px;
  	/* border: 1px solid #dee0e4; */
    border: 2px solid #9e2b2f;
    margin-left: 36px;
  	margin-bottom: 20px;
  	padding: 0 15px;
}

.login form label {
    margin-top: -16px;
  	margin-left: 36px;
    height: 30px;
    vertical-align: top;
  	color: #ff0000;
    font-weight: 600;
}

.login form input[type="submit"] {
  	width: 420px;
  	padding: 15px;
 	margin-top: 20px;
    margin-left: 36px;
  	margin-bottom: 30px;
  	background-color: #9e2b2f;
  	border: 0;
  	cursor: pointer;
  	font-weight: 100;
    color: #ffffff;
  	transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
	background-color: #be4b4f;
  	transition: background-color 0.2s;
}

.bottom {
    height: 42px;
    text-align: right;
    vertical-align: top;
}

.bottom a {
    margin-right: 36px;
    color: #9e2b2f;
    text-decoration: underline;
}

.bottom a:hover {
    margin-right: 36px;
    color: #9e2b2f;
    text-decoration: none;
}