body {
  font-family: 'Noto Sans';
}

.top-bar {
  background-color: white;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
}

.top-bar-content {
  margin: auto;
  max-width: 1440px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}

.top-bar-content > .customer-logo-container {
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.container {
  display: grid;
  place-items: center;
  max-width: 1440px;
  min-height: 100vh;
  padding: 72px 0 0;
  margin: auto;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
}

.logo {
  object-fit: contain;
  width: 70px;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.splash {
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash-image {
  width: 100%;
  max-width: 320px;
}

.login-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.login-card .customer-logo-container {
  display: none;
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.login,
.signup {
  width: 80%;
  height: 62px;
  border-radius: 9999px;
  border: 2px solid #f0a51e;
  font-family: 'Noto Sans Thai';
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
  transition: all 0.5s ease 0s;
  background-color: #f0a51e;
  color: white;
}

.login:hover {
  transition: all 0.5s ease 0s;
  background-color: #d8951b;
  border-color: #d8951b;
}

.signup {
  background-color: white;
  color: #f0a51e;
}

@media screen and (min-width: 768px) {
  .top-bar-content > .customer-logo-container {
    display: none;
  }

  .content {
    flex-direction: row;
  }

  .login-card {
    flex: 1 0 360px;
  }

  .login-card .customer-logo-container {
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    height: 100%;
    width: auto;
    max-width: 280px;
    max-height: 180px;
  }

  .logo {
    width: 120px;
  }

  .title {
    font-size: 30px;
  }

  .splash {
    flex: 1 1 50%;
  }

  .splash-image {
    width: auto;
    max-width: 100%;
  }

  .buttons {
    gap: 20px;
  }

  .login,
  .signup {
    width: 276px;
    height: 70px;
  }
}
