* {
  margin: 0;
  padding: 0;
}

/* latin-ext */

@font-face {
  font-family: 'Bubblegum Sans';

  font-style: normal;

  font-weight: 400;

  font-display: swap;

  src: local('Bubblegum Sans Regular'), local('BubblegumSans-Regular'),
    url(https://fonts.gstatic.com/s/bubblegumsans/v7/AYCSpXb_Z9EORv1M5QTjEzMEteaOxIL_bw.woff2)
      format('woff2');

  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */

@font-face {
  font-family: 'Bubblegum Sans';

  font-style: normal;

  font-weight: 400;

  font-display: swap;

  src: local('Bubblegum Sans Regular'), local('BubblegumSans-Regular'),
    url(https://fonts.gstatic.com/s/bubblegumsans/v7/AYCSpXb_Z9EORv1M5QTjEzMEteaAxII.woff2)
      format('woff2');

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

.login-app {
  background-color: #f0f2f5;
}

.container {
  margin: auto;
  width: 70vw;
  padding: 10px;
}

section {
  display: flex;
  /* padding: 1rem; */
}

.left {
  height: 400px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.right {
  height: 400px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

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

.input-field label {
  margin-top: 10px;
  font-weight: bold;
}

.input-field input {
  height: 40px;
  width: 350px;
  background-color: #e8f0fe;
  border: 1px solid #a5a5a5;
  border-radius: 2px;
  padding: 8px;
  margin-top: 5px;
}

.login-button-container button {
  width: 350px;
  height: 40px;
  background-color: #645eeb;
  color: white;
  font-size: large;
  margin: 10px 0;
}

.link {
  text-decoration: none;
  color: inherit;
}

.login-help .link {
  color: #645eeb;
}

.login-help p {
  margin: 0.5rem;
  text-align: center;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.feature .feature-content h2 {
  font-size: 2rem;
  font-weight: bold;
}

.feature .feature-content p {
  font-size: 1.25rem;
}

.feature .feature-image img {
  max-width: 100%;
  max-height: 400px;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */

  section {
    flex-direction: column;
  }

  .section-1 {
    flex-direction: column-reverse;
  }

  .order-0 {
    order: 0;
  }

  .order-1 {
    order: 0;
  }

  .left {
    width: 100%;
    height: 15rem;
  }

  .right {
    width: 100%;
    height: 15rem;
  }

  .feature .feature-image img {
    max-height: 15rem;
  }
}

