* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body.login-page {
  background: linear-gradient(135deg, #e8f0f8 0%, #f5f8fa 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.login-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  height: 90vh;
  max-height: 750px;
  border-radius: 15px;
  overflow: hidden;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.login-left {
  flex: 0 0 auto;
  width: 380px;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #d4e4f3 0%, #e8f0f8 100%);
}

.login-left .logo {
  margin-bottom: 15px;
  text-align: center;
}

.login-left .logo img {
  max-height: 40px;
  width: auto;
}

.welcome-heading {
  font-size: 24px;
  font-weight: 600;
  color: #0d5b9b;
  margin-bottom: 5px;
  text-align: center;
}

.welcome-subtext {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #0d5b9b;
  border-radius: 5px;
  font-size: 11px;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: #084570;
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 91, 155, 0.2);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
}

.reset-password-link {
  color: #0d5b9b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.reset-password-link:hover {
  color: #084570;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 8px;
  background: linear-gradient(135deg, #0d5b9b 0%, #084570 100%);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 10px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 91, 155, 0.3);
}

.divider {
  text-align: center;
  margin: 8px 0;
  position: relative;
  color: #999;
  font-size: 10px;
}

.divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.divider span {
  background: white;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.google-signin-btn {
  width: 100%;
  padding: 8px;
  border: 2px solid #0d5b9b;
  background: white;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.google-signin-btn:hover {
  border-color: #0d5b9b;
  color: #0d5b9b;
  box-shadow: 0 2px 8px rgba(13, 91, 155, 0.15);
}

.google-icon {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285F4" d="M23.745 12.27c0-.79-.1-1.54-.25-2.25H12v4.26h6.066c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23.5c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 22.29 7.7 23.5 12 23.5z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 2.29 2.18 4.93l2.85 2.22c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') center/contain no-repeat;
}

.footer-section {
  display: none;
}

.company-name {
  display: none;
}

.certified-by {
  display: none;
}

.certification-badges {
  display: none;
}

.cert-badge {
  display: none;
}

/* Right Panel - Marketing Section */
.login-right {
  flex: 1;
  background: linear-gradient(135deg, #004b87 0%, #0d5b9b 50%, #1a7db8 100%);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.login-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.right-content {
  position: relative;
  z-index: 1;
}

.right-logo {
  margin-bottom: 30px;
  text-align: center;
}

.right-logo img {
  max-height: 40px;
  width: auto;
  background: white;
  padding: 12px 25px;
  border-radius: 25px;
  display: inline-block;
}

.tagline {
  display: none;
}

.quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-author {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.testimonials {
  margin-top: 15px;
}

.testimonial-card {
  background: white;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(13, 91, 155, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 11px;
  color: #666;
}

.testimonial-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  font-size: 12px;
}

.testimonial-title {
  font-size: 10px;
  color: #999;
}

.carousel-dots {
  text-align: center;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .login-left {
    padding: 30px 25px;
    flex: 0 0 auto;
  }

  .login-right {
    padding: 30px 25px;
    flex: 0 0 auto;
    min-height: 300px;
  }

  .welcome-heading {
    font-size: 20px;
  }

  .quote {
    font-size: 16px;
  }

  .certification-badges {
    gap: 8px;
  }

  .cert-badge {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .login-left {
    padding: 20px 15px;
  }

  .login-right {
    padding: 20px 15px;
  }

  .welcome-heading {
    font-size: 18px;
  }

  .quote {
    font-size: 14px;
  }

  .form-group input[type="text"],
  .form-group input[type="password"] {
    padding: 8px 10px;
  }

  .login-btn,
  .google-signin-btn {
    padding: 8px;
    font-size: 12px;
  }
}
