@charset "UTF-8";
:root {
  --primary: #5b6ac9;
  --primary-dark: #404b9a;
  --primary-light: #93a0f0;
  --accent-orange: #ff7a59;
  --accent-cyan: #7dd3fc;
  --accent-purple: #a78bfa;
  --accent-green: #7adcd6;
  --accent-yellow: #facc15;
  --text-dark: #0f172a;
  --text-md: #334155;
  --text-light: #64748b;
  --text-white: #fff;
  --bg-light: #f8fafc;
  --white: #fff;
  --black: #000;
  --cyan: #7dd3fc;
  --blue-cornflower: #6495ed;
  --hero-mid: #7fb7be;
  --border-100: #e5e7eb;
  --border-200: #e2e8f0;
  --muted-300: #d1d5db;
  --white-98: rgba(255, 255, 255, .98);
  --white-90: rgba(255, 255, 255, .90);
  --white-20: rgba(255, 255, 255, .20);
  --white-15: rgba(255, 255, 255, .15);
  --white-10: rgba(255, 255, 255, .10);
  --white-03: rgba(255, 255, 255, .03);
  --black-30: rgba(0, 0, 0, .30);
  --black-20: rgba(0, 0, 0, .20);
  --black-15: rgba(0, 0, 0, .15);
  --black-08: rgba(0, 0, 0, .08);
  --navbar-glass: rgba(118, 198, 223, .05);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, .30);
  --shadow-med: 0 10px 40px rgba(0, 0, 0, .20);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, .08);
  --shadow-primary-40: 0 10px 30px rgba(64, 75, 154, .40);
  --shadow-primary-30: 0 20px 60px rgba(64, 75, 154, .30);
  --shadow-primary-20: 0 25px 60px rgba(64, 75, 154, .20);
  --shadow-primary-10: 0 15px 40px rgba(64, 75, 154, .10);
  --grad-brand: linear-gradient(135deg, var(--primary), var(--accent-purple));
  --grad-underline: linear-gradient(90deg, var(--primary), var(--accent-purple));
  --grad-btn-nav: linear-gradient(135deg, var(--primary), var(--primary-light));
  --grad-hero: linear-gradient(135deg, #1a2358 0%, var(--primary-dark) 50%, #1b2a6a 100%);
  --grad-process: linear-gradient(135deg, var(--primary-dark), var(--primary));
  --grad-contact: linear-gradient(135deg, #1a2358 0%, var(--primary) 55%, #1a2358 100%);
  --grad-text-strong: linear-gradient(135deg, #ffffff, var(--accent-cyan), var(--blue-cornflower));
  --grad-text-light: linear-gradient(135deg, var(--accent-cyan), var(--blue-cornflower));
  --grad-icon-warm: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  --grad-card-glow: linear-gradient(135deg, #eef2ff, #f5f3ff);
  --grad-cta: linear-gradient(135deg, #ff8b6e, #ffd166);
  --grad-bg-generic: linear-gradient(135deg, #f1f5ff 0%, #f5f3ff 100%);
  --radial-hero-cyan: radial-gradient(circle at 20% 50%, rgba(125, 211, 252, .14) 0%, transparent 50%);
  --radial-hero-purple: radial-gradient(circle at 80% 80%, rgba(167, 139, 250, .14) 0%, transparent 50%);
  --radial-hero-orange: radial-gradient(circle at 40% 20%, rgba(255, 122, 89, .10) 0%, transparent 50%);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--grad-bg-generic);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

.animated-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.animated-bg::before, .animated-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}
.animated-bg::before {
  width: 500px;
  height: 500px;
  background: var(--radial-hero-cyan);
  top: -10%;
  left: -10%;
}
.animated-bg::after {
  width: 600px;
  height: 600px;
  background: var(--radial-hero-purple);
  bottom: -15%;
  right: -15%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.9);
  }
  75% {
    transform: translate(20px, 20px) scale(1.05);
  }
}
.registration-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.registration-card {
  background: var(--white-98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--shadow-primary-10);
  border: 1px solid var(--white-20);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.registration-header {
  background: var(--grad-brand);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.registration-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--radial-hero-orange);
  pointer-events: none;
}

.registration-header .logo-container {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.registration-header .logo-container img {
  max-height: 45px;
  filter: brightness(0) invert(1);
}

.registration-header h1 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
}

.registration-header p {
  color: var(--white-90);
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.steps-nav {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border-100);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  transition: 0.3s;
}

.step-line {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--border-200);
  z-index: 0;
  transition: 0.4s;
}

.step-item:last-child .step-line {
  display: none;
}

.step-item.completed .step-line {
  background: var(--grad-brand);
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--border-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  margin-bottom: 0.75rem;
}

.step-item.active .step-circle {
  background: var(--grad-brand);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary-20);
  transform: scale(1.1);
}

.step-item.completed .step-circle {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--white);
}

.step-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step-item.completed .step-label {
  color: var(--accent-green);
}

.form-content {
  padding: 2.5rem 2rem;
}

.form-section {
  display: none;
  animation: fadeInContent 0.5s ease;
}

.form-section.active {
  display: block;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  font-size: 1.75rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-md);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-floating > .form-control, .form-floating > .form-select {
  border: 2px solid var(--border-200);
  border-radius: 12px;
  padding: 1rem 1rem;
  font-size: 0.95rem;
  transition: 0.3s;
  background: var(--white);
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus, .form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 106, 201, 0.1);
  background: var(--white);
}

.form-floating > label {
  color: var(--text-light);
  padding: 1rem 1rem;
  font-size: 0.9rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not([value=""]):valid ~ label {
  color: var(--primary);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.pattern-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  display: block;
  font-style: italic;
}

.input-icon {
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  color: var(--text-light);
  font-size: 1.1rem;
  z-index: 4;
  pointer-events: none;
}

.form-floating.with-icon > .form-control, .form-floating.with-icon > .form-select {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 0.6rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 4;
  padding: 0.5rem;
  transition: color 0.3s;
}

.password-toggle:hover {
  color: var(--primary);
}

.info-alert {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.1), rgba(167, 139, 250, 0.1));
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-alert i {
  color: var(--accent-cyan);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-alert .info-content {
  flex: 1;
}

.info-alert .info-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.info-alert .info-text {
  font-size: 0.9rem;
  color: var(--text-md);
  margin: 0;
}

.info-alert .btn-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  transition: color 0.3s;
}

.info-alert .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.form-check {
  padding-left: 2rem;
  margin-bottom: 1.25rem;
}

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--border-200);
  border-radius: 6px;
  margin-top: 0.125rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(91, 106, 201, 0.15);
  border-color: var(--primary);
}

.form-check-label {
  color: var(--text-md);
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}

.form-check-label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.form-check-label a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-outline-primary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-20);
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-30);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.success-content {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary-20);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.success-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.registration-footer {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-100);
}

.registration-footer p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.registration-footer a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.registration-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: var(--shadow-strong);
}

.modal-header {
  background: var(--grad-brand);
  color: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 1.5rem 2rem;
  border: none;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-body {
  padding: 2rem;
}

.modal-body ol {
  padding-left: 1.5rem;
}

.modal-body ol li {
  margin-bottom: 1rem;
  color: var(--text-md);
  line-height: 1.6;
}

.modal-body ol li strong {
  color: var(--text-dark);
}

.modal-body .alert {
  border-radius: 12px;
}

.modal-body .terms-content h4, .modal-body .privacy-content h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-100);
}

.modal-body .terms-content h4:first-of-type, .modal-body .privacy-content h4:first-of-type {
  margin-top: 0;
}

.modal-body .terms-content p, .modal-body .privacy-content p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.modal-xl {
  max-width: 1140px;
}

.invalid-feedback {
  font-size: 0.875rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: block !important;
}

.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid, .form-select.is-valid {
  border-color: var(--accent-green);
}

/* Honeypot (láthatatlan az embereknek, "csábító" a botoknak) */
.hp-field {
  position: absolute !important;
  left: -100vw !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field input {
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .registration-container {
    padding: 1rem 0.5rem;
  }
  .registration-card {
    border-radius: 16px;
  }
  .registration-header {
    padding: 2rem 1.5rem;
  }
  .registration-header h1 {
    font-size: 1.5rem;
  }
  .steps-nav {
    padding: 1.5rem 1rem;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .step-label {
    font-size: 0.75rem;
  }
  .step-line {
    top: 20px;
  }
  .form-content {
    padding: 2rem 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .registration-footer {
    padding: 1.25rem 1rem;
  }
}
@media (max-width: 576px) {
  .step-label {
    display: none;
  }
  .steps-container {
    max-width: 300px;
  }
  .registration-header .logo-container img {
    max-height: 35px;
  }
  .registration-header h1 {
    font-size: 1.25rem;
  }
  .registration-header p {
    font-size: 0.875rem;
  }
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

/*# sourceMappingURL=registration.css.map */
