body {
  font-family: Arial, sans-serif;
  background: #fce4ec;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.logo-container {
    text-align: center;
    margin-top: 8px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;/* font sang trọng */
  }

  .logo-text {
    font-size: 36px;
    color: #c2185b; /* hồng đậm pastel */
    font-weight: bold;
    letter-spacing: 2px;
  }

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 300px;
}

.form-toggle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-toggle button {
  width: 48%;
  padding: 10px;
  border: none;
  background-color: #ec407a;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.form-box {
  display: flex;
  flex-direction: column;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-box input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-box button {
  padding: 10px;
  background-color: #ec407a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hidden {
  display: none;
}
