@import url(https://fonts.googleapis.com/css?family=Poppins:300,500,700);

body {
    background: #f1f1f1;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    width: 100%;
}

.login-page {
    width: 400px;
    margin: auto;
}

.form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form .button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #005ab2;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form .button:hover,
.form .button:active,
.form .button:focus {
    background: #385dbd;
}

.form .error {
    color: red;
}

.form h1 {
    color: #005ab2;
    font-weight: bold;
}

.form p {
  font-size: 16px;
  color: #00000080;
}

.form a {
  text-decoration: none;
  color: #005ab2;
}

.form div label {
  text-align: left;
  color: #00000080;
}

.preferences {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preferences input {
  margin-right: 4px;
}

.preferences .checkbox label {
  font-size: 13px;
  color: #00000080;
}

.forgot-password {
  margin-bottom: 10px;
  color: #00000080;
  font-size: 13px;
}

.forgot-password a {
  color: #00000080;
}

.checkbox {
  display: flex;
}

.checkbox input {
  width: 13px;
}

/* Authenticator */
.container {
  max-width: 300px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container p {
  color: #00000080;
  text-align: center;
}

h1 {
  color: #4169E1;
  text-align: center;
}

form {
  text-align: center;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #005ab2;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button:hover {
  background-color: #385dbd;
}

.error {
  display: none;
  color: red;
}

@media only screen and (max-width: 600px) {
  .container {
      margin: 20px;
  }
  .form {
    padding: 24px;
  }
  .login-page {
    width: 350px;
  }
  .preferences .checkbox label {
    font-size: 12px;
  }
  .forgot-password {
    font-size: 12px;
  }
}
