div.main, body {
	background-color: #D96941;
	font: 'Montserrat', sans-serif;
}

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */

div.main * {
  box-sizing: border-box;
    margin:0px auto;

  &:before,
  &:after {
    box-sizing: border-box;
  }

}

.alert {
	width: 250px;
	border-radius: 0px;
	font-size: 14px;
}

a {
	color: #eee;
	text-decoration: none;
	transition: color 0.25s;
}

a:focus {
	outline: none;
	color: #fff;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

input {
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	padding: 0;
	-webkit-appearance: none;
}

p {
	line-height: 1.5em;
}

.clearfix {
  *zoom: 1;

  &:before,
  &:after {
    content: ' ';
    display: table;
  }

  &:after {
    clear: both;
  }

}

.container {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}

.center {
	text-align: center;
}

/* ---------- LOGIN ---------- */

#login form{
	width: 250px;
}
#login, .logo{
    display:inline-block;
    width:40%;
}
#login {
  width: 100%;
}
.logo{
	padding: 50px 20px;
}

#login form span.fa {
	background-color: #fff;
	border-radius: 3px 0px 0px 3px;
	color: #193C40;
	display: block;
	float: left;
	height: 50px;
    font-size:24px;
	line-height: 50px;
	text-align: center;
	width: 50px;
	border-radius: 0px;
}

#login form input {
	height: 50px;
}
fieldset{
    padding:0;
    border:0;
    margin: 0;

}
#login form input[type="text"], input[type="password"], input[type="email"] {
	background-color: #fff;
	border-radius: 0px 3px 3px 0px;
	color: #000;
	margin-bottom: 1em;
	padding: 0 16px;
	width: 200px;
	border-radius: 0px;
	transition: background 0.3s;
}

#login form input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
	outline: none;
	background: #eee;
}

#login form input[type="submit"] {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #A62B1F;
  color: #eee;
  font-weight: bold;
  /* margin-bottom: 2em; */
  text-transform: uppercase;
  padding: 5px 16px;
  height: 45px;
  width: 250px;
  border-radius: 0px;
  transition: background 0.4s;
}

#login form input[type="submit"]:focus {
	outline: none;
}

#login form input[type="submit"]:hover, #login form input[type="submit"]:focus {
	background-color: #193C40;
}

#login > p {
	text-align: center;
}

#login > p span {
	padding-left: 5px;
}
.middle {
  display: flex;
  width: 600px;
}

.error-wrapper {
	position: absolute;
	top: -70px;
	left: -2px;
	width: 100%;
}

.error {
	width: 526px;
	padding: 16px;
	border-radius: 3px;
	background-color: white;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	box-shadow: 0px 0px 10px #d31245;
}

.success {
	width: 526px;
	padding: 16px;
	border-radius: 3px;
	background-color: white;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	box-shadow: 0px 0px 10px #76d312;
}