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

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: #fff;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Left Panel */
.left-panel {
  display: none;
  width: 50%;
  background: radial-gradient(1200px 700px at 30% 20%, rgba(28, 96, 255, 0.18) 0%, rgba(20, 30, 55, 0) 55%),
    linear-gradient(135deg, #0F1A33 0%, #141E37 60%, #0F1A33 100%);
  color: #fff;
  padding: 60px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .left-panel { display: flex; }
}

.left-content {
  max-width: 460px;
  width: 100%;
}

.left-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 8px;
}

.subtitle {
  color: #D7E2F0;
  text-align: left;
  margin-bottom: 28px;
  font-size: 14px;
}

.features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  filter: blur(0.2px);
  z-index: 0;
}

.feature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #1C60FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(28, 96, 255, 0.35);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature strong {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.feature span {
  color: #D7E2F0;
  font-size: 13px;
  display: block;
  line-height: 1.25;
}

.trust-badge {
  margin-top: 22px;
  text-align: left;
  color: #D7E2F0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3AC616;
  box-shadow: 0 0 0 3px rgba(58, 198, 22, 0.15);
}

/* Right Panel */
.right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.form-container { width: 100%; max-width: 400px; }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.logo span {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #141E37;
}

.form-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
}

.form-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #0F172A;
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: #141E37;
  margin-bottom: 24px;
  font-size: 14px;
}

.form-subtitle a {
  color: #1C60FF;
  text-decoration: none;
  font-weight: 500;
}

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

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

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: #1C60FF;
}

.input-group input::placeholder { color: #888; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.checkbox-label a {
  color: #1C60FF;
  text-decoration: none;
}

.error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
  display: none;
}

.error.show { display: block; }

.success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #16A34A;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
  display: none;
}

.success.show { display: block; }

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover { background: #222; }
button[type="submit"]:disabled { background: #ccc; cursor: not-allowed; }

.forgot-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #1C60FF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.forgot-link:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .right-panel { padding: 18px; }
  .form-card { padding: 22px; border-radius: 18px; }
  .logo { margin-bottom: 22px; }
  .logo span { font-size: 22px; }
  .form-card h2 { font-size: 22px; }
  button[type="submit"] { padding: 13px; font-size: 15px; }
}
