* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f9fd;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  display: flex;
  width: 90%;
  max-width: 1000px;
  background: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.login-left, .login-right {
  flex: 1;
  padding: 40px;
}

.login-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo img {
  width: 50px;
  margin-bottom: 20px;
}

.login-left h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.login-left p {
  font-size: 14px;
  margin-bottom: 20px;
}

.login-left a {
  color: #4a4aff;
  text-decoration: none;
}

.login-left input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.continue-btn {
  background: #4a4aff;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.continue-btn:hover {
  background: #3737ff;
}

.login-right {
  background: #0e0e24;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.login-right h2 span {
  color: #25e6b8;
}

.login-right img {
  max-width: 250px;
  margin: 20px auto 0;
}

/* ✅ Responsive for mobile */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    max-width: 400px;
  }
  .login-right {
    order: -1;
    padding: 20px;
  }
  .login-left {
    padding: 20px;
  }
}
