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

body {
  min-height: 100vh;
  background: #030712;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 900px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* LEFT */
.left {
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8, #3b82f6);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.left-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
}

.left-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.left-bottom {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* RIGHT */
.right {
  background: #0f0f1a;
  padding: 48px 44px;
}

.right h3 {
  font-size: 26px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.subtitle a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.subtitle a:hover {
  text-decoration: underline;
}

/* FORM ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: #1a1a2e;
  border: 1.5px solid #1e1e38;
  border-radius: 10px;
  padding: 11px 14px;
  color: #f1f5f9;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
  color: #374151;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group select {
  cursor: pointer;
  color: #94a3b8;
}

/* STRENGTH BARS */
.strength-bars {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: #1e1e38;
}

.bar.active {
  background: #3b82f6;
}

/* CHECKBOX */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-row label {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.check-row label a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.check-row label a:hover {
  text-decoration: underline;
}

/* SUBMIT */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  margin-bottom: 16px;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.line {
  flex: 1;
  height: 1px;
  background: #1e1e38;
}

.divider span {
  font-size: 12px;
  color: #374151;
  font-weight: 600;
}

/* SOCIAL */
.social-btns {
  display: flex;
  gap: 10px;
}

.social-btn {
  flex: 1;
  background: #1a1a2e;
  border: 1.5px solid #1e1e38;
  border-radius: 10px;
  padding: 10px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-btn:hover {
  border-color: #3b82f6;
  color: #f1f5f9;
}