body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f7f7f7;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.onboarding-container {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.onboarding-slide {
  background: white;
  border-radius: 32px;
  padding: 48px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 600px;
  width: 100%;
}

.slide-icon {
  font-size: 80px;
  margin-bottom: 40px;
}

.slide-content {
  flex: 1;
}

.slide-subtitle {
  color: #ff385c;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.onboarding-slide h1 {
  font-size: 32px;
  margin: 16px 0;
}

.onboarding-slide p {
  color: #717171;
  font-size: 16px;
  line-height: 1.6;
}

.onboarding-footer {
  margin-top: 40px;
}

.dot-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ddd;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  background: #ff385c;
}

.btn-link {
  background: none;
  border: none;
  color: #717171;
  font-size: 14px;
  margin-top: 16px;
  cursor: pointer;
  text-decoration: underline;
}

.auth-container {
  width: 100%;
  max-width: 480px;
  padding: 24px;
}

.auth-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.input-group {
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.helper-text {
  font-size: 12px;
  color: #717171;
  margin-bottom: 24px;
  line-height: 1.4;
}

.btn-primary {
  width: 100%;
  background-color: #ff385c; /* Airbnb style primary color */
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover {
  background-color: #e31c5f;
}

.divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #717171;
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.divider span {
  padding: 0 16px;
  font-size: 13px;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-social {
  width: 100%;
  background: white;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}

.btn-social:hover {
  background-color: #f7f7f7;
}

.footer-links {
  margin-top: 24px;
  text-align: center;
}

.footer-links a {
  color: #717171;
  font-size: 14px;
  text-decoration: underline;
}

.info-text {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
