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

body {
  font-family: "YekanBakh", sans-serif;
  min-height: 100vh;
  background: #0d0618;
  color: #495057;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0d0618 0%, #1a0530 50%, #0d0618 100%);
}
.bg__shape {
  position: absolute;
  opacity: 0.07;
}
.bg__shape--1 {
  width: 600px;
  height: 600px;
  border: 80px solid #e91e8c;
  border-radius: 50%;
  top: -200px;
  left: -200px;
}
.bg__shape--2 {
  width: 400px;
  height: 400px;
  border: 60px solid #6b0f6e;
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}
.bg__shape--3 {
  width: 300px;
  height: 300px;
  border: 2px solid #e91e8c;
  border-radius: 50%;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  opacity: 0.04;
}
.bg__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.bg__circle--1 {
  width: 500px;
  height: 500px;
  background: #6b0f6e;
  top: -100px;
  left: -100px;
}
.bg__circle--2 {
  width: 400px;
  height: 400px;
  background: #e91e8c;
  bottom: -100px;
  right: -50px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(13, 6, 24, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__back {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.topbar__back svg {
  transform: rotate(180deg);
}
.topbar__back:hover {
  color: #ffffff;
}

.card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 960px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
}

.panel {
  background: linear-gradient(160deg, #6b0f6e 0%, #e91e8c 100%);
  padding: 48px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.panel__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.panel__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.panel__title span {
  color: #ffffff;
  font-size: 32px;
}
.panel__desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}
.panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.panel__list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.panel__list span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.panel__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel__icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}
.panel__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: auto;
}
.panel__stats > div {
  flex: 1;
  text-align: center;
}
.panel__stats > div:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.panel__stats > div strong {
  display: flex;
  gap: 3px;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  direction: ltr;
}
.panel__stats > div > span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.form-side {
  background: #ffffff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  overflow-y: auto;
}
.form-side__title {
  font-size: 1.65rem;
  font-weight: 750;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.form-side__sub {
  font-size: 0.925rem;
  color: #868e96;
  margin-bottom: 32px;
  line-height: 1.7;
}

.regForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.regForm .fullColumn {
  grid-column: span 2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: #495057;
}
.field label em {
  font-style: normal;
  font-weight: 400;
  color: #868e96;
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ced4da;
  border-radius: 10px;
  font-family: "YekanBakh", sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8f9fa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field input::-moz-placeholder, .field select::-moz-placeholder, .field textarea::-moz-placeholder {
  color: #ced4da;
  text-align: right;
}
.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: #ced4da;
  text-align: right;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #e91e8c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.08);
}
.field textarea {
  resize: none;
  min-height: 80px;
}
.field__err {
  font-size: 12px;
  color: #e53935;
  min-height: 16px;
}
.field--error input, .field--error select, .field--error textarea {
  border-color: #e53935;
  background: #fff5f5;
}
.field--ok input, .field--ok select {
  border-color: #43a047;
}

.submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b0f6e 0%, #e91e8c 100%);
  color: #ffffff;
  font-family: "YekanBakh", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.35);
}
.submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.submit__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.submit--loading .submit__text {
  display: none;
}
.submit--loading .submit__loader {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  gap: 16px;
  padding: 40px 0;
}
.success--show {
  display: flex;
}
.success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b0f6e, #e91e8c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
}
.success__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}
.success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
}
.success p {
  font-size: 14px;
  color: #868e96;
  line-height: 1.8;
  max-width: 280px;
}
.success__btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b0f6e, #e91e8c);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.success__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 72px;
    gap: 32px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .page {
    padding-inline: 0 !important;
  }
  .panel {
    width: calc(100% - 64px);
    margin-inline: auto;
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  }
  .panel__stats {
    margin-top: 0;
  }
  .form-side {
    width: calc(100% - 64px);
    margin-inline: auto;
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  }
  .regForm {
    grid-template-columns: 100%;
  }
  .regForm .fullColumn {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .panel {
    padding: 28px 20px;
  }
  .form-side {
    padding: 32px 24px;
  }
  .topbar {
    padding: 14px 20px;
  }
}/*# sourceMappingURL=register.css.map */

.userFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.userFields .field {
  padding: 14px 18px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid rgba(107, 15, 110, 0.08);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.userFields .field .fieldTitle {
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  display: block;
}
.userFields .field .fieldValue {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #6b06fe 0%, #e91e8c 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.userFields .submit {
  grid-column: span 2;
}