
:root {
  --primary-purple: #6B21A8;
  --accent-green: #10B981;
  --background-light: #F9FAFB;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
}

body {
  background:  #052c0d;/*linear-gradient(to right, var(--accent-green), var(--primary-purple));*/
  font-family: 'Segoe UI', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.pill-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: black;
  background-color: #C8DF52; /* Emerald */
  border-radius: 999px;       /* Makes it a pill */
  text-transform: uppercase;
}

.badge {
  font-size: 0.875rem;
  padding: 0.6em 0.9em;
}

.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #C8DF52;  /*  */
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #e5e7eb;
}

.hero {
  background-color: transparent;
  padding: 5rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #ffffff;
}

.hero h1 focus{
  font-size: 4.5rem;
  font-weight: bold;
  color: #C8DF52;
}

body h2 focus{
  font-size: 2.0rem;
  font-weight: bold;
  color: #C8DF52;
}

.hero p {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-top: 1rem;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #C8DF52;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
}


.btn-primary:hover {
  background-color: #C8DF52;
  border-color: #f3f4f6;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.btn-outline-clean {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  transition: all 0.2s ease-in-out;
}

.btn-outline-clean:hover {
  background-color: white;
  color: #6B21A8; /* or your accent color */
}

.features {
  padding: 4rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.features h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.features p {
  color: #e0e0e0;
  font-size: 1rem;
}

.footer {
  /* background-color: rgba(255, 255, 255, 0.1); */
  padding: 2rem;
  text-align: center;
  color: #e0e0e0;
  font-size: 0.9rem;
}

form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: black;
}

/* Login Page Styles */
.login-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.login-card h2 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.login-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-control {
  font-size: 0.95rem;
  border-radius: 6px;
}

.btn-primary {
  background-color: #6B21A8;
  border-color: #6B21A8;
  border-radius: 6px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #581C87;
  border-color: #581C87;
}

.btn-google {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #1f2937;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-google:hover {
  background-color: #f3f4f6;
}

.btn-google img {
  width: 18px;
  height: 18px;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

.footer-note a {
  color: #6B21A8;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-size: 0.85rem;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #d1d5db;
  position: absolute;
  top: 50%;
  width: 40%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.navbar-logo {
    max-height: 60px;   /* adjust for clarity */
    height: auto;       /* maintain aspect ratio */
    width: auto;        /* no forced stretch */
}