body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;

  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 02)),
    url("../../images/bathroom-background.png");
  background-size: cover;
}

/* Button */
/* dark mode button */
.btn-toggle {
  left: 400px;
  bottom: 300px;
  background-color: rgba(255, 255, 255, 0.405);
}

.btn-toggle:hover {
  transition-duration: 0.35s;
  background-color: rgba(88, 88, 88, 0.405);
}

.container {
  width: 400px;
  max-width: 400px;
  margin: 1rem;
  padding: 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  background: white;
  position: fixed;
}

.form-input-group {
  margin-bottom: 1rem;
}

.input-field {
  width: 100%;
}

.form-text {
  text-align: center;
  padding-bottom: 35px;
}

.form-button {
  width: 100%;
}

.form-line {
  border-bottom: 1px solid #8ebebc;
}
