body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, #f4b400, #0d1b2a);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  width: 900px;
  max-width: 95%;
}

.login-left {
  background-color: #0f1a2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px; /* 🔹 increase top/bottom space */
  min-height: 100vh;
  text-align: center;
}

.login-left h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

.login-left p {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #ccc;
}

.login-left img {
  width: 140px;
  margin: 20px 0;
  border-radius: 10px;
}

.login-right {
  flex: 1.2;
  padding: 40px;
}

.login-right h3 {
  text-align: center;
  color: #0d1b2a;
  margin-top: 180px;
  margin-bottom: 25px;
}

.signup-form h3{
    text-align: center;
  color: #0d1b2a;
  margin-top: 10px;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.btn-login {
  width: 100%;
  background-color: #f4b400;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-login:hover {
  background-color: #e09d00;
}

.signup-text {
  text-align: center;
  margin-top: 15px;
}

.signup-text a {
  color: #f4b400;
  text-decoration: none;
  font-weight: 600;
}

.signup-text a:hover {
  text-decoration: underline;
}

form input[type="tel"],
form input[type="text"] {
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-left {
    padding: 20px;
  }

  .login-right {
    padding: 30px 20px;
  }
}
