:root {
  --green-primary: #6ba82f;
  --green-secondary: #58a400;
  --green-light: #a9f37a;
  --green-bg: #e8f5d0;
  --dark: #1a1a1a;
  --muted: #6f6f6f;
  --border: #c5e09b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background:linear-gradient(#8BDF1100,#8BDF11);
  min-height: 100vh;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;  
}
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.wrap {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #2d5016;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 14px;
  color: #4a7a1f;
  font-weight: 500;
}

.card {
  background: var(--green-primary);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.dot.on {
  background: white;
}

.title {
  text-align: center;
  color: white;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.type-selection {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.type-toggle {
  display: flex;
  gap: 0;
  background: white;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.type-toggle .opt {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
  font-size: 14px;
}

.type-toggle .opt.active {
  background: var(--green-secondary);
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.photo-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 4px;
}

.photo-placeholder:hover {
  background: white;
  transform: translateY(-1px);
}

.photo-icon {
  font-size: 24px;
  color: var(--muted);
}

.photo-text {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.row {
  display: flex;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.field label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.field input,
.field select {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: white;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.field input::placeholder {
  color: #999;
}

.phone-input {
  display: flex;
  gap: 8px;
}

.country-code {
  width: auto;
  flex-shrink: 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-row input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-row input[type="checkbox"]:checked + .checkmark {
  background: white;
  border-color: white;
}

.checkbox-row input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: var(--green-primary);
  font-weight: bold;
  font-size: 14px;
}

.checkbox-row a {
  color: white;
  text-decoration: underline;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.btn {
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  min-width: 120px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn.primary {
  background: var(--dark);
  color: white;
}

.btn.primary:hover:not(:disabled) {
  background: #000;
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn.dark {
  background: var(--dark);
  color: white;
}

.btn.dark:hover:not(:disabled) {
  background: #000;
  transform: translateY(-1px);
}

.center {
  text-align: center;
}

.muted {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.login-link {
  margin-top: 16px;
  margin-bottom: 0;
}

.login-link a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .card {
    padding: 24px;
  }

  .row {
    flex-direction: column;
    gap: 12px;
  }

  .type-toggle .opt {
    padding: 10px 16px;
    font-size: 13px;
  }

  .actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }
}