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

body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.login-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  width: 100%;
}

.login-container {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 35px 30px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}
.login-header img {
  height: 48px;
  margin-bottom: 15px;
}
.login-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: #2d6b62;
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.form-control {
  position: relative;
}
.form-control input {
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.form-control input:focus {
  border-color: #d4a94c;
}

.forgot-link {
  text-align: right;
  margin-top: -12px;
  margin-bottom: 20px;
}
.forgot-link a {
  font-size: 12px;
  color: #2d6b62;
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  height: 48px;
  background: #f2e185;
  color: #333;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  margin-bottom: 20px;
}
.btn-submit:hover {
  background: #eed761;
  transform: translateY(-1px);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
  color: #999;
  font-size: 12px;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

.btn-reg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: transparent;
  color: #d4a94c;
  border: 2px solid #d4a94c;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-reg-cta:hover {
  background: #f2e185;
  color: #333;
}

.back-home {
  margin-top: 25px;
  text-align: center;
}
.back-home a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}
.back-home a:hover {
  color: #2d6b62;
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: #1a3530;
  color: #7aaa9e;
  padding: 40px 15px 20px;
  font-size: 11px;
  width: 100%;
}
.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
footer img { height: 42px; margin-bottom: 15px; display: block; }
.fdesc { font-size: 11px; line-height: 1.6; color: #7aaa9e; margin-bottom: 25px; }
.fcol-title { font-size: 12px; font-weight: 700; color: #BDDBD0; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.8px; }
.flinks { list-style: none; }
.flinks li { margin-bottom: 8px; font-size: 11px; }
.flinks a { color: #7aaa9e; text-decoration: none; transition: color 0.2s; }
.flinks a:hover { color: #d4a94c; }

/* Contact Specific */
.fcol-contact-title { font-size: 12px; font-weight: 700; color: #BDDBD0; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 30px; }
.f-contact { color: #7aaa9e; line-height: 1.7; font-size: 11px; }
.f-contact strong { color: #BDDBD0; display: block; margin-top: 12px; font-size: 11px; margin-bottom: 4px; }
.f-contact span { display: block; margin-bottom: 4px; }
.f-contact a { color: #d4a94c; text-decoration: none; font-weight: 700; font-size: 12px; }

.fbot {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.f-copy { font-size: 10px; color: #4a7a70; }
.pays { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.paychip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  color: #9ecfbf;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .fcol-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .fcol-brand { grid-column: span 1; }
}
