/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  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;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.logo span {
  color: #2563eb;
}

/* HERO */
.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.highlight {
  color: #2563eb;
}

.sub-headline {
  font-size: 15px;
  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: #ffffff;
}

.form-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 42px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

/* HEADER */
.form-header h2 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-header p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

/* INPUTS */
.input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #334155;
  font-weight: 600;
}

.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: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.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: 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.submit-btn i {
  margin-left: 6px;
}

/* LINKS */
.bottom-links {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.bottom-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.bottom-links a:hover {
  text-decoration: underline;
}

/* MESSAGE */
.status-message {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
