/* make the split-view full height */
html, body {
  height: 100%;
  margin: 0;
}

/* left pane styling */
.welcome-pane {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.welcome-subtitle {
  font-size: 1.25rem;
  max-width: 400px;
}

/* right pane centering */
.auth-pane {
  background-color: #f4f7f6;
}

/* ensure auth-card doesn’t stretch too wide */
.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;
}
.auth-card:hover {
  transform: translateY(-5px);
}

/* on phones, drop the split and show only auth */
@media (max-width: 767px) {
  .welcome-pane {
    display: none !important;
  }
  .auth-pane {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .auth-card {
    background: #fff;
  }
}
