
body.auth {
  font-size: 16px;
  font-family: Helvetica;

  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100vw;
  min-height: 100vh;
  flex-direction: column;
  gap: 20px;

  button {
    color: #fff;
    background-color: #e21613;

    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .4375rem .875rem;
    font-size: .8125rem;
    line-height: 1.5385;
    border-radius: .1875rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;

    &:hover {
      box-shadow: 0 0 0 62.5rem #e21613 inset;
      background-color: #e21613;
      text-decoration: none;
    }
  }

  h1,
  h2 {
    text-align: center;
  }

  >div:first-of-type {
    min-width: 600px;
    min-height: 400px;
    text-align: center;
    box-shadow: 1px 1px 11px -6px gray;
    border-radius: 4px;
    padding-top: 2rem;
  }

  .auth-form {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

    >input,
    .form-row>input {
      width: 100%;
      max-width: 300px;
      height: 40px;
      padding-left: 10px;
      appearance: none;
      border: 1px solid #DDD8;
      background: #DDD2;
      /*outline: unset;*/
      border-bottom: 1px solid var(--white);
      transition: border-color .3s ease-in-out;
      color: var(--white);

      &:focus-within {
        border-color: var(--white);
      }
    }

    .checkbox {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 5px;
      width: 50%;

      >input {
        margin-top: 4px;
      }
    }

    >ul {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      margin: -10px 0 0;
      padding: 0;
      list-style: none;
    }
  }

  .options {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;

    >a:not(.button) {
      @include mixins.line-animation();
    }
  }

  .icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
