.login {
  display: flex;
  justify-content: center;
  align-items: start;
  height: auto;
  margin: 3% auto;
}

.container {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  width: 100%;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  background: #f1f1f1;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.tab--active {
  background: #84004e;
  color: #fff;
}

.form {
  padding: 20px;
  display: none;
  width: 100%;
}

.form--active {
  display: block;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form__input-container {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
}

.form__input {
  width: calc(50% - 10px);
  margin: 5px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form__input.full-width {
  width: 100%;
}

.form__button {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  background: #84004e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form__button:hover {
  background: #ea008b;
}

p {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

p a {
  color: #84004e;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
.form__input-container {
  flex-direction: column;
}

.form__input {
  width: 100%;
  margin: 10px 0;
}
