body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d1117;
}

.auth-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 10, 14, 0.70), rgba(7, 10, 14, 0.82)),
    url("../imgs/truck-bg.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px 90px;
  box-sizing: border-box;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(58, 96, 140, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.auth-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: rgba(10, 14, 19, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
}

.auth-brand-panel {
  display: flex;
  align-items: center;
  padding: 70px;
  background:
    linear-gradient(135deg, rgba(17, 25, 36, 0.88), rgba(10, 15, 23, 0.68));
}

.auth-brand-content {
  max-width: 520px;
}

.auth-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #cfd8e3;
  font-size: 13px;
  margin-bottom: 24px;
}

.auth-brand-content h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
}

.auth-brand-content p {
  margin: 0;
  color: #afbac8;
  font-size: 18px;
  line-height: 1.7;
}

.auth-highlights {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-highlight {
  color: #e9eef5;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: rgba(255,255,255,0.03);
}

.auth-form-card {
  width: 100%;
  max-width: 460px;
  background: rgba(13, 18, 25, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 34px;
  box-sizing: border-box;
}

.auth-form-head h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

.auth-form-head p {
  margin: 0 0 28px;
  color: #9eabb9;
  font-size: 15px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-group label {
  color: #d8e0e8;
  font-size: 14px;
  font-weight: 600;
}

.auth-group label small {
  color: #8492a2;
  font-size: 12px;
  font-weight: 400;
}

.auth-group input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 0 16px;
  color: #fff;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

.auth-group input::placeholder {
  color: #7f8b99;
}

.auth-group input:focus {
  border-color: rgba(98, 151, 214, 0.9);
  box-shadow: 0 0 0 3px rgba(98,151,214,0.14);
}

.auth-submit-btn,
.auth-secondary-btn {
  height: 54px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.auth-submit-btn {
  background: linear-gradient(135deg, #2e5f95, #4d7caf);
  color: #fff;
}

.auth-submit-btn:hover {
  transform: translateY(-1px);
}

.auth-divider {
  text-align: center;
  color: #8391a1;
  font-size: 13px;
  margin-top: 4px;
}

.auth-secondary-btn {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.auth-secondary-btn:hover {
  background: rgba(255,255,255,0.10);
}

.auth-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 62px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 10, 14, 0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.auth-bottom-left span,
.auth-bottom-right a {
  color: #aab5c2;
  font-size: 14px;
  text-decoration: none;
}

.auth-bottom-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.auth-bottom-right a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    padding: 40px 30px 20px;
  }

  .auth-brand-content h1 {
    font-size: 38px;
  }

  .auth-form-panel {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .auth-page {
    padding: 20px 16px 84px;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-form-card {
    padding: 24px 18px;
  }

  .auth-brand-panel {
    padding: 28px 20px 10px;
  }

  .auth-brand-content h1 {
    font-size: 30px;
  }

  .auth-brand-content p {
    font-size: 15px;
  }

  .auth-bottom-bar {
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .auth-bottom-right {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: -4px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9fb0c2;
}

.remember input {
  accent-color: #5b8fd1;
}

.forgot-link {
  color: #8fa1b5;
  text-decoration: none;
  transition: 0.2s;
}

.forgot-link:hover {
  color: #ffffff;
}.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #9fb0c2;
  margin-top: 6px;
  line-height: 1.4;
}

.terms-check input {
  margin-top: 2px;
  accent-color: #5b8fd1;
}

.terms-check a {
  color: #8fb4ff;
  text-decoration: none;
}

.terms-check a:hover {
  color: #ffffff;
}.auth-errors {
  background: #ffe5e5;
  border: 1px solid #ffb3b3;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #b30000;
  font-weight: 600;
}.g-recaptcha {
  margin: 16px 0;
}