.auth-container {
  min-height: 100vh;
  display: flex;
  padding: 40px;
}
.auth-grid {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.auth-form-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px;
}
.form-header {
  margin-bottom: 32px;
}
.form-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.5px;
}
.form-subtitle {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: all .2s ease;
}
.form-input:focus {
  border-color: #2a2a2a;
  box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form-checkbox label {
  cursor: pointer;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .2s ease;
}
.form-submit:hover {
  filter: brightness(0.9);
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  color: #666;
  font-size: 14px;
}
.form-footer a {
  color: #2a2a2a;
  text-decoration: underline;
  font-weight: 700;
}

.password-meter {
  height: 4px;
  background: #e6e6e6;
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.password-strength {
  height: 100%;
  background: #ff4444;
  transition: .3s ease;
  width: 0%;
}
.password-strength.weak {
  width: 33%;
  background: #ff4444;
}
.password-strength.medium {
  width: 66%;
  background: #ffa500;
}
.password-strength.strong {
  width: 100%;
  background: #22c55e;
}

.auth-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 16px;
}
.benefit-icon {
  flex: 0 0 48px;
  height: 48px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.benefit-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.login-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
}
.forgot-link {
  color: #2a2a2a;
  text-decoration: underline;
}
