*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background: rgba(19, 34, 47,1);  font-family: "Titillium Web", sans-serif;
}

a.forgot {
  text-decoration: none;
  color: #1ab188;
  transition: 0.5s ease;
}
a.forgot:hover {
  color: #179b77;
}

.form {
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
}

.logo{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 100px;
}

h1,p {
  text-align: center;
  color: #ffffff;
  margin: 0 0 40px;
}

input{
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus{
  outline: 0;
  border-color: #1ab188;
}

.field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  letter-spacing: 0.1em;
  background: #ffffff;
  color: #1ab188;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  text-align: center;
  margin: 5px;
}
.button:hover, .button:focus {
  background: #179b77;
  color: #ffffff;
  text-decoration: none;
}

.button-block {
  display: block;
  width: 100%;
}

.msbutton {
  background: #04aeda;
  color: #ffffff;
}
.msbutton:hover, .msbutton:focus {
  background: #029ac2;
  color: #ffffff;
  text-decoration: none;
}

.gbutton {
  background: #E74B37;
  color: #ffffff;
}
.gbutton:hover, .gbutton:focus {
  background: #cf4332;
  color: #ffffff;
  text-decoration: none;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

.error{
  text-align: center;
    color: red;
    border: red solid;
    /* background-color: white; */
    padding: 5px;
}

.password-recommendation, .password-score{
  color: white !important;
}

