/* General Styling */
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: white;
  background-color: #157A48;
}

/* Header */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e5e5e5;
  padding: 10px 40px;
}

.lock-icon {
  width: auto;
  height: 18px;
  vertical-align: middle;
}

.logo img {
  height: auto;
  width: 80px;

}

.header-links a {
  color: black;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

/* Main Section */
.main-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px 20px 20px 30px;
}

.welcome-text h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
}

.subtitle {
  margin-top: 10px;
  font-size: 1.2em;
}

#loginBtn {
  margin-top: 25px;
  background-color: white;
  color: #000000;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

#loginBtn:hover {
  background-color: #74e2ab;
  color: white;
}

/* Card Image */
.card-image img {
  max-width: 100%;
  height: auto;
}

/* Bottom Text */
.bottom-text {
  text-align: center;
  font-size: 1em;
  padding: 40px 20px;
  background-color: #157A48;
}

.bottom-text em {
  font-style: italic;
  font-weight: bold;
}

/* 🌿 Footer */
.footer {
  background-color: #146b3f;
  color: white;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.9em;
  margin-top: 50px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e0e0e0;
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
    font-size: 0.8em;
  }

  .footer-links {
    display: block;
    line-height: 1.8;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    text-align: center;
    min-width: auto;
    padding: 20px;
  }

  .card-image {
    margin-top: 40px;
  }

  .welcome-text h1 {
    font-size: 1.8em;
  }
}
