@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.backdrop-top {
  height: 40vh;
  background: url("../images/lincoln-banner.jpg") center no-repeat;
  background-size: auto auto;
  background-size: cover;
}

.backdrop-bottom {
  height: 60vh;
}

.fixed-column {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  width: 100%;
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.login-form {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem;
}

.login-form a {
  text-decoration: none;
  color: darkgrey;
  text-align: center;
}

.login-header {
  font-weight: 400;
}

input {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

.form-input[type="button"] {
  border: none;
  background-color: #bd122a;
  color: #fff;
  line-height: 25px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.form-input:hover[type="button"] {
  background-color: #bd122a;
  cursor: pointer;
}

.form-input[type="text"],
.form-input[type="password"] {
  border: none;
  border-bottom: 2px solid #d25c6d;
  background: none;

  color: #aaaaaa;
  line-height: 25px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.form-input:focus[type="text"],
.form-input:focus[type="password"] {
  border-bottom: 2px solid #c12137;
  outline: none;
  color: #4a494a;
}

.gdpr {
  padding: 2.5rem 2rem 0 2rem;
  max-width: 700px;
}

.gdpr p {
  font-size: 12px;
}

.brand {
  position: fixed;
  top: 0;
  right: 0;
  margin: 2rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.messages {
  font-size: 12px;
  line-height: 12px;
  color: #FF4136;
}

ul[role="alert"] {
  color: #FF4136;
}