.gs-body {
  background: linear-gradient(to right, #667eea, #764ba2);
}



.gs-form-card {
  background-color: white;
  max-width: 400px;
  width: 100%;
  border: none;
}

.gs-title {
  color: #4a00e0;
  font-weight: bold;
}

.gs-label {
  font-weight: 500;
  color: #333;
}

.gs-input {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  transition: 0.3s ease-in-out;
}

.gs-input:focus {
  border-color: #7f00ff;
  box-shadow: 0 0 5px #7f00ff40;
}

.gs-btn {
  background-color: #4a00e0;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.gs-btn:hover {
  background-color: #7f00ff;
  transform: scale(1.02);
}

.gs-link {
  color: #333;
  font-size: 14px;
}


.banner-section {
  background-image: url('images/earth-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Content box */
.banner-content {
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #1112137a, #1d20225e);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

/* Text styles */
.banner-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Gradient text animation */
.animated-heading {
  background: linear-gradient(95deg, #61f10c, #0982e0, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animatedGradient 4s ease-in-out infinite;
}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Button styles */
.comm-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 185, 148, 0.3);
  transition: all 0.3s ease;
  width: fit-content;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .banner-section {
    flex-direction: column;
    height: auto;
  }

  .banner-content {
    width: 100%;
    padding: 40px 20px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 16px;
  }
}
