body {
  background-image: url(../images/authbg.png);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  font-family: 'Times New Roman', Times, serif;
}
.container {
  max-width: 800px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.panel {
  padding: 2rem;
  color: #ffffff;
  background-color: #4e342e;
  text-align: center;
}
.panel h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.form-section {
  display: none;
  padding: 2rem;
}
.form-section.active {
  display: block;
}
.toggle-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 25px;
  padding: 10px 20px;
  transition: 0.3s;
}
.toggle-btn:hover {
  background-color: #ffffff;
  color: #4e342e;
}
.form-group input {
  border-radius: 5px;
}
.btn-coffee {
  background-color: #6f4e37;
  color: #fff;
}
.btn-coffee:hover {
  background-color: #5e3f30;
}
.form-section {
  display: none;
}
.form-section.active {
  display: block;
}
