main.vt-section {
  padding-top: 0;
}

.vt-register-page {
  padding-top: 0;
  padding-bottom: 64px;
}

.vt-reg-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(18, 135, 60, 0.95), rgba(31, 162, 92, 0.9)),
    radial-gradient(
      900px 300px at 10% 0%,
      rgba(255, 255, 255, 0.2),
      transparent 60%
    );
  padding: 48px 32px;
  color: #fff;
  box-shadow: 0 24px 56px rgba(22, 101, 52, 0.18);
  margin: 22px 0 28px;
}

.vt-reg-hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 70%
  );
  pointer-events: none;
}

.vt-reg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.vt-reg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vt-reg-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vt-reg-hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
  max-width: 720px;
}

.vt-reg-breadcrumb {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.vt-reg-breadcrumb__nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(16, 24, 40, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}

.vt-reg-breadcrumb__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.vt-reg-breadcrumb__nav span {
  opacity: 0.75;
  font-size: 13px;
  font-weight: 700;
}

.vt-reg-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vt-reg-side,
.vt-reg-main {
  background: #fff;
  border: 1px solid #e5efe7;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.vt-reg-side {
  padding: 20px;
  position: sticky;
  top: 100px;
}

.vt-reg-main {
  padding: 24px;
}

.vt-reg-side__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}

.vt-reg-side__desc {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

.vt-reg-type {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #dbe8dd;
  border-radius: 18px;
  padding: 16px;
  background: #f8fcf9;
  transition: 0.2s ease;
  margin-bottom: 14px;
}

.vt-reg-type:hover {
  border-color: #8ed0a1;
  box-shadow: 0 10px 24px rgba(22, 101, 52, 0.1);
  transform: translateY(-1px);
}

.vt-reg-type.is-active {
  border-color: #16a34a;
  background: #eefaf0;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.1);
}

.vt-reg-type__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d9e6dd;
  font-size: 22px;
  margin-bottom: 10px;
}

.vt-reg-type__title {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.vt-reg-type__desc {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.vt-reg-side__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #198754;
  color: #198754;
  text-decoration: none;
  font-weight: 800;
  margin-top: 6px;
}

.vt-reg-side__login:hover {
  background: #effaf2;
}

.vt-alert {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  border: 1px solid transparent;
}

.vt-alert--danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.vt-alert--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.vt-reg-main__title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
}

.vt-reg-main__desc {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.75;
  font-size: 15px;
}

.vt-reg-empty {
  border: 1px dashed #cfe2d2;
  background: #fbfefc;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
}

.vt-reg-empty__icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.vt-reg-empty h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

.vt-reg-empty p {
  margin: 0 auto;
  max-width: 680px;
  color: #64748b;
  line-height: 1.75;
}

.vt-reg-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.vt-reg-mini-card {
  border: 1px solid #dde9df;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  text-align: left;
}

.vt-reg-mini-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.vt-reg-mini-card p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

.vt-reg-mini-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  background: #198754;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.vt-reg-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vt-field {
  margin-bottom: 16px;
}

.vt-field label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.vt-field .req {
  color: #dc2626;
  margin-left: 2px;
}

.vt-field input,
.vt-field select,
.vt-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  background: #fff;
}

.vt-field textarea {
  min-height: 120px;
  resize: vertical;
}

.vt-field input:focus,
.vt-field select:focus,
.vt-field textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.vt-field__help {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}

.vt-reg-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.vt-btn-primary,
.vt-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.vt-btn-primary {
  border: 0;
  background: #198754;
  color: #fff;
  cursor: pointer;
}

.vt-btn-primary:hover {
  filter: brightness(0.98);
}

.vt-btn-outline {
  border: 1px solid #198754;
  background: #fff;
  color: #198754;
}

.vt-btn-outline:hover {
  background: #effaf2;
}

.vt-reg-success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.vt-reg-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  .vt-reg-grid {
    grid-template-columns: 1fr;
  }

  .vt-reg-side {
    position: static;
  }
}

@media (max-width: 767px) {
  .vt-reg-hero {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .vt-reg-main,
  .vt-reg-side {
    padding: 18px;
  }

  .vt-reg-mini-grid,
  .vt-reg-form__grid,
  .vt-reg-success-actions,
  .vt-reg-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .vt-reg-main__title {
    font-size: 24px;
  }
}
