body {
  background-color: whitesmoke;
  font-family: "Open Sans", sans-serif;
  height: 90vh;
  margin: 0;

  h3,
  p {
    margin: 0;
    padding: 0;
  }

  .login-form-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    width: 80%;

    img {
      height: 40px;
      margin-bottom: 24px;
    }

    .form-container {
      background-color: white;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      padding: 32px;
    }

    h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 24px;
    }
  }

  form {
    .input-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 12px;
    }

    .input-section {
      display: flex;
      flex-direction: column;
    }

    label {
      color: #4a4a4a;
      font-size: 14px;
      font-weight: 600;
      line-height: 22px;
      margin-bottom: 12px;
    }

    input {
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      font-size: 14px;
      line-height: 22px;
      padding: 12px 16px;
    }

    input::placeholder {
      color: #808080;
    }

    input:focus {
      outline: none;
    }

    .forgot-password {
      color: #ec3a3a;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 24px;
    }

    button {
      align-items: center;
      background-color: #ee001a;
      border-radius: 8px;
      border: none;
      color: white;
      display: flex;
      font-size: 14px;
      font-weight: 700;
      justify-content: center;
      line-height: 22px;
      margin-bottom: 16px;
      padding: 13px 0;
      width: 100%;
    }
  }

  .sign-up-now {
    color: #808080;
    font-size: 14px;
    font-weight: 400;
    text-align: center;

    span {
      color: #ee001a;
      font-weight: 600;
    }
  }
}

footer {
  background-color: white;
  bottom: 0;
  box-shadow: 0px 1px 0px 0px #e1e1e1 inset;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 24px 0;
  position: fixed;
  width: 100%;

  .terms-conditions {
    align-items: center;
    color: #4a4a4a;
    display: flex;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 8px;
  }

  .copy-right {
    align-items: center;
    color: #808080;
    display: flex;
    justify-content: center;
  }
}

/* Tablet: ≥ 768px */
@media (min-width: 768px) {
  .form-container {
    padding: 32px 24px;
  }

  form .input-container {
    gap: 20px;
  }

  .login-form {
    width: 70% !important;
  }
}

/* Small laptop / desktop: ≥ 1024px */
@media (min-width: 1024px) {
  .login-form {
    width: 50% !important;
  }

  .form-container {
    padding: 32px 32px;
  }
}

/* Large desktop: ≥ 1366px */
@media (min-width: 1366px) {
  .login-form {
    width: 30% !important;
  }
}
