/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  color: #0f172a;
  min-height: 100vh;
}

/* ========== LAYOUT ========== */
.page-wrapper {
  display: flex;
  min-height: 100vh;
}

/* LEFT SIDE */
.content-side {
  flex: 1;
  background: #0f172a;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Subtle glow accent */
.content-side::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2563eb40, transparent 70%);
  pointer-events: none;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.logo-area i {
  font-size: 18px;
}

.logo span {
  color: #3b82f6;
}

/* HERO TEXT */
.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #3b82f6;
}

.sub-headline {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 420px;
}

.copyright {
  font-size: 13px;
  color: #64748b;
}

/* RIGHT SIDE */
.form-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #f8fafc;
}

.form-card {
  width: 100%;
  max-width: 420px;
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.form-header h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 25px;
}

/* INPUTS */
.input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #334155;
  font-weight: 500;
}

.input-group input {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  font-size: 14px;
  transition: all 0.2s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px #3b82f620;
}

/* ROW */
.row {
  display: flex;
  gap: 12px;
}

.row .input-group {
  flex: 1;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.submit-btn i {
  margin-left: 6px;
}

/* LINKS */
.bottom-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.bottom-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.bottom-links a:hover {
  text-decoration: underline;
}

/* MESSAGE */
.status-message {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 120px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: #2563eb;
}

.footer-brand p {
  margin-top: 15px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-columns h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: white;
}

.footer-columns a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-columns a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
