.login {
  display: -webkit-flex;
  display: -ms-flex;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: #fafafa;
  opacity: 0.9;
  z-index: 20;
  overflow: hidden;
  }

.login-label {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -12%;
  font-weight: 300;
  font-size: 2.5em; }

.login-form {
  display: flex;
  justify-content: center;
  flex-flow: column;
  position: relative;
  top: -5%;
  width: 50%;
  height: auto;
  padding: 1em;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(10, 10, 10, 0.26);
  box-sizing: border-box;
  transition: all ease 250ms;
  /* active state */ }
  .login-form .form-label {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 1.33em; }
  .login-form .form-error {
    color: rgba(250, 10, 10, 0.9);
    margin: 0;
    font-size: 0.9em;
    text-align: left;
    text-indent: 1em; }
  .login-form .group {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 1.25rem 0; }
  .login-form input[type="text"] {
    -webkit-appearance: none;
    height: 2em;
    width: 100%;
    border-width: 0;
    padding: 0.5em;
    font-size: 1em;
    background-color: white;
    color: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid #75757525; }
    .login-form input[type="text"]:focus, .login-form input[type="text"]:focus-within {
      outline-offset: 0;
      outline-width: 0;
      outline: none; }
  .login-form label {
    color: #999;
    font-size: 1em;
    font-weight: 300;
    position: absolute;
    left: 1em;
    top: 10px;
    transition: all 150ms ease;
    z-index: 25; }
  .login-form input[type="text"]:focus ~ label,
  .login-form input[type="text"]:valid ~ label {
    top: -1em;
    left: 0;
    font-size: 1em;
    color: #303F9F; }
  .login-form .bar {
    position: relative;
    display: block;
    width: 100%; }
  .login-form .bar:after,
  .login-form .bar:before {
    content: '';
    height: 1px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #303F9F;
    transition: 150ms ease width; }
  .login-form .bar:before {
    left: 50%; }
  .login-form .bar:after {
    right: 50%; }
  .login-form input[type="text"]:focus ~ .bar:after,
  .login-form input[type="text"]:focus ~ .bar:before {
    width: 50%; }
  .login-form input[type="text"]:-webkit-autofill {
    background-color: white !important;
    -webkit-box-shadow: 0 0 0 1000px white inset; }
  .login-form button[type="submit"] {
    -webkit-appearance: none;
    height: 2.25rem;
    width: 50%;
    margin: auto;
    padding: 0.25em;
    border-width: 0;
    border-radius: 2px;
    color: rgba(250, 250, 250, 0.9);
    font-size: 0.9em;
    background-color: #303F9F;
    transition: background-color 150ms ease; }
    .login-form button[type="submit"]:hover {
      background-color: #3d50c5; }
    .login-form button[type="submit"]:focus {
      outline: none;
      background-color: #242f78; }
  .login-form .rememberMe {
    display: flex;
    align-items: center;
    margin-bottom: 1em; }
    .login-form .rememberMe input[type="checkbox"] {
      position: relative;
      left: 1.2em;
      display: none; }
      .login-form .rememberMe input[type="checkbox"] + label {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 20px;
        color: #999;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none; }
        .login-form .rememberMe input[type="checkbox"] + label:last-child {
          margin-bottom: 0; }
        .login-form .rememberMe input[type="checkbox"] + label:before {
          content: '';
          display: block;
          width: 20px;
          height: 20px;
          border: 1px solid #303F9F;
          position: absolute;
          left: 0;
          top: 0;
          opacity: 0.8;
          transition: all linear 150ms, border-color linear 100ms; }
      .login-form .rememberMe input[type="checkbox"]:checked + label:before {
        width: 10px;
        top: -5px;
        left: 5px;
        border-radius: 0;
        opacity: 1;
        border-top-color: transparent;
        border-left-color: transparent;
        transform: rotate(45deg); }

.logo {
  font-weight: 200;
  color: #303F9F; }

/*# sourceMappingURL=login.css.map */
