* { 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(900px 700px at 30% 20%, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 60%, #0f0f0f 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;
  color: rgb(247, 248, 250);
}

.subtitle {
  color: rgb(215, 226, 240);
  text-align: left;
  margin-bottom: 28px;
  font-size: 14px;
}

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

.features::before {
  content: none;
}

.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.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

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

.feature-icon svg * {
  fill: #222222 !important;
  stroke: #222222 !important;
}

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

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

.feature span {
  color: rgb(215, 226, 240);
  font-size: 13px;
  display: block;
  line-height: 1.25;
}

.trust-badge {
  margin-top: 22px;
  text-align: left;
  color: rgb(215, 226, 240);
  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-img {
  display: block;
  width: 174px;
  height: auto;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logo-mark .logo-word {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: rgb(28, 28, 28);
  line-height: 1;
}

.logo-mark .logo-x {
  width: 30px;
  height: 30px;
  color: rgba(96, 96, 96, 0.5);
}

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

.form-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: rgb(15, 23, 42);
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: rgb(20, 30, 55);
  margin-bottom: 24px;
  font-size: 14px;
}

.form-subtitle a {
  color: rgb(15, 23, 42);
  text-decoration: underline;
  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;
  background: #F3F4F6;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
}

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

.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: rgb(15, 23, 42);
  text-decoration: underline;
}

.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: rgb(51, 51, 51);
  color: #fff;
  border: none;
  border-radius: 10px;
  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: rgb(15, 23, 42);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.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; }
}
