@import url('base.css');

/* LOGIN oldalspecifikus */
.login-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.login-switch button {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  background: #2a2d36;
  color: #ccc;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.login-switch button.active {
  background: var(--primary-gradient);
  color: #fff;
}