.elementor-2569 .elementor-element.elementor-element-18253c7 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}/* Start custom CSS for html, class: .elementor-element-8a239fb */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-wrapper {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.auth-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2563eb;
  text-align: center;
}

.logo span {
  color: #3b82f6;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab-buttons button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-buttons button.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form.active {
  display: flex;
}

.form h2 {
  text-align: center;
  color: #1f2937;
}

.form input, .form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.form button {
  padding: 12px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.form button:hover {
  background: #1d4ed8;
}

.text-link {
  text-align: center;
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
}/* End custom CSS */