/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F1F6F7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Background Grid ---------- */
.grid-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
}

.square {
  position: absolute;
  background: #CEE3E8;
  width: 70px;
  height: 70px;
  opacity: 0.5;
}
.square:nth-child(1) { top: 200px; left: 220px; }
.square:nth-child(2) { top: 280px; left: 1150px; }
.square:nth-child(3) { top: 720px; left: 150px; }
.square:nth-child(4) { top: 660px; left: 930px; width: 60px; height: 60px; }
.square:nth-child(5) { top: 730px; left: 1220px; }

/* ---------- Login Section ---------- */
.login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 96px 20px;
  z-index: 2;
  position: relative;
}

.logo {
  width: 240px;
  margin-bottom: 40px;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 40px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
  border: 9px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #000319;
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 3, 25, 0.4);
}

input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 16px;
  color: #000319;
}

.captcha {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.captcha img {
  width: 280px;
  height: 70px;
}

.terms {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.btn-login {
  background: #008B00;
  color: #fff;
  border: none;
  border-radius: 74px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-login:hover {
  background: #007000;
}

.signup-text {
  text-align: center;
  font-size: 16px;
  color: #000319;
}
.signup-text a {
  color: #008B00;
  text-decoration: none;
  font-weight: 500;
}
.signup-text a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */
/* .footer {
  background: #122A54;
  color: #fff;
  padding: 96px 120px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 250px;
}
.footer-left p {
  font-size: 15px;
  opacity: 0.5;
}
.footer-logo {
  width: 200px;
}
.social-icons {
  display: flex;
  gap: 12px;
  opacity: 0.3;
}
.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 48px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.footer-links a {
  font-size: 15px;
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
}
.footer-links a:hover {
  opacity: 0.8;
} */

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer {
    padding: 60px 40px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(156.49deg, #285DBA -21.52%, #122A54 116.38%);
  color: white;
  padding: 80px 120px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}


.contact-legal {
  text-align: center;
  font-size: 11px;
  color: #8FA89F;
  padding: 16px;
  /* background: #F0F4F3; */
}

@media (max-width: 768px) {
  .contact-legal {
    padding: 12px 16px;
  }
}
