@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Google+Sans+Flex:wght@100..1000&display=swap');

:root {
  --bg-dark: #0D0D0D;
  --bg-card: rgba(20, 28, 16, 0.85);
  --border-green: #2C4018;
  --green-mid: #51731F;
  --lime-bright: #B2F227;
  --primary-color: #A0D925;
  --text-main: #F2F2F2;
  --text-muted: rgba(242, 242, 242, 0.7);
  --font-main: 'Google Sans Flex', system-ui, -apple-system, sans-serif;
  --font-code: 'Google Sans Code', monospace;
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-dark) url('https://mwon.com.br/ID/NEW/Wallpaper1.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wizard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(160, 217, 37, 0.15);
  width: 100%;
  max-width: 520px;
  padding: 36px;
}

.wizard-header {
  text-align: center;
  margin-bottom: 28px;
}

.wizard-logo {
  max-height: 54px;
  margin-bottom: 16px;
}

.wizard-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.wizard-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.wizard-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lime-bright);
  margin: 20px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(44, 64, 24, 0.6);
  padding-bottom: 6px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-code);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(160, 217, 37, 0.3);
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--lime-bright));
  color: #0D0D0D;
  border: none;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 217, 37, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wizard-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.wizard-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.wizard-alert.success {
  display: block;
  background: rgba(160, 217, 37, 0.15);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
