.lotus365-banner {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5e8 0%, #2e8b57 100%);
  display: flex;
  align-items: center;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
}

.lotus365-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* Left Content Section */
.lotus365-content {
  padding: 2rem;
}

.lotus365-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #2e8b57;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.lotus365-description {
  font-size: 1.2rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.lotus365-about-btn {
  background: #2e8b57;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.lotus365-about-btn:hover {
  background: #228b22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

/* Right Login Form Section */
.lotus365-login-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lotus365-form-container {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Form Header */
.lotus365-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.lotus365-form-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.lotus-green {
  color: #2e8b57;
}

.lotus-yellow {
  color: #ffa500;
}

.lotus365-tagline {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

/* Form Inputs */
.lotus365-input-group {
  margin-bottom: 1.2rem;
}

.lotus365-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.lotus365-input:focus {
  outline: none;
  border-color: #2e8b57;
}

.lotus365-input::placeholder {
  color: #999;
  font-weight: 400;
}

/* Login Buttons */
.lotus365-login-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lotus365-login-btn.primary {
  background: #2c3e50;
  color: white;
}

.lotus365-login-btn.primary:hover {
  background: #34495e;
}

.lotus365-login-btn.demo {
  background: #2c3e50;
  color: white;
}

.lotus365-login-btn.demo:hover {
  background: #34495e;
}

/* Forgot Password Button */
.lotus365-forgot-btn {
  width: 100%;
  padding: 1rem;
  background: #2e8b57;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lotus365-forgot-btn:hover {
  background: #228b22;
}

/* reCAPTCHA Notice */
.lotus365-recaptcha {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.lotus365-recaptcha a {
  color: #2e8b57;
  text-decoration: none;
}

.lotus365-recaptcha a:hover {
  text-decoration: underline;
}

/* Contact Email */
.lotus365-email {
  text-align: center;
  font-size: 0.9rem;
  color: #2e8b57;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lotus365-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .lotus365-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .lotus365-description {
    text-align: center;
  }
  
  .lotus365-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lotus365-banner {
    padding: 1rem;
  }
  
  .lotus365-title {
    font-size: 2rem;
  }
  
  .lotus365-form-container {
    padding: 2rem;
  }
  
  .lotus365-form-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .lotus365-title {
    font-size: 1.8rem;
  }
  
  .lotus365-description {
    font-size: 1rem;
  }
  
  .lotus365-form-container {
    padding: 1.5rem;
  }
}
