* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
}
.landing-wrapper {
  display: flex;
  height: 100vh;
}
.landing-left {
  flex: 1;
  background: linear-gradient(to bottom right, #b3e5fc, #81d4fa);
  color: #034b5e;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-left .logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.landing-left h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.landing-left p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.landing-left .stats div {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.landing-right {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-frame {
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .landing-wrapper {
    flex-direction: column;
  }
  .landing-left, .landing-right {
    flex: none;
    width: 100%;
    padding: 2rem;
  }
  .auth-frame {
    height: 550px;
  }
}