* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  color: #ffffff;
  background: #000000;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background:
    radial-gradient(circle at 35% 35%, rgba(87, 35, 190, 0.9) 0%, rgba(119, 83, 216, 0.4) 28%, rgba(124, 86, 255, 0.34) 56%, rgba(124, 86, 255, 0) 72%);
  filter: blur(28px);
  transform: translate3d(-200%, -200%, 0);
  transition: opacity 0.25s ease;
  will-change: transform, opacity;
}

.cursor-glow.is-visible {
  opacity: 0.72;
}

.container {
  max-width: 1080px;
  padding: 0 24px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

/* HERO */
.hero {
  padding: 50px 0;
  position: relative;
  width: 100%;
  background: url("assets/hero-bg-layer.png") no-repeat center/cover;
  overflow-x: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: black;
  filter: blur(50px);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: black;
  filter: blur(46px);
  z-index: 0;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 0 0 720px;
  min-width: 0;
  max-width: 720px;
}

.hero__image {
  position: relative;
  z-index: 0;
  flex: 1 0 420px;
  width: auto;
  min-width: 380px;
  align-self: flex-end;
  margin-left: -96px;
  margin-right: calc(50% - 50vw);
}

.hero__image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero__image--mobile {
  display: none;
  width: 100%;
  height: auto;
  min-width: auto;
}

.hero__title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.05;
  text-transform: uppercase;

  background: radial-gradient(circle, #ffffff 30%, #8c85ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

.hero__description {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.35;
}

.hero__list1 {
  margin-top: 32px;
}

.hero__list1-title {
  font-size: 33px;
  font-weight: bold;
}

.hero__list1-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.hero__list1-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__list1-item img {
  width: 38px;
  height: 38px;
}

.hero__list1-item p {
  font-size: 16px;
  line-height: 1.25;
}

.hero__list2 {
  margin-top: 32px;
}

.hero__list2-items {
  display: flex;
  align-items: start;
  gap: 8px;
}

.hero__list2-item {
  flex: 1;
  display: flex;
  align-items: start;
  gap: 8px;
}

.hero__list2-item img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.hero__list2-item p {
  font-size: 16px;
  color: #888FAA;
  line-height: 1.35;
}

.hero__dop-info {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__dop-info-text {
  font-size: 19px;
}

.hero__dop-info-text .fiyat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__dop-info-text .fiyat span {
  font-size: 35px;
  color: #4A4962;
  text-decoration: line-through;
}

.hero__dop-info-text .ilk {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__dop-info-text .ilk span {
  font-size: 16px;
  font-weight: bold;
  color: #00B090;
  background-color: #1B4C6B;
  padding: 3px 6px;
  border-radius: 9px;
}

.button.register-btn {
  width: fit-content;
  max-width: 100%;
  min-height: 92px;
  border: none;
  border-radius: 999px;
  padding: 12px 20px 12px 12px;
  background: linear-gradient(90deg, #a69dff 0%, #8f86ff 48%, #7f78f5 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  gap: 18px;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.55),
    inset 0 10px 18px rgba(255, 255, 255, 0.14),
    0 0 28px rgba(126, 117, 255, 0.8),
    0 0 60px rgba(87, 74, 250, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.button.register-btn::after {
  content: "";
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  visibility: hidden;
}

.button.register-btn:hover {
  /* transform: translateY(-1px); */
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.62),
    inset 0 10px 18px rgba(255, 255, 255, 0.16),
    0 0 32px rgba(126, 117, 255, 0.98),
    0 0 68px rgba(87, 74, 250, 0.72);
}

.button.register-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.btn-arrow-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  flex-shrink: 0;
  background-color: #3a2b97;
  background-image: url("assets/arrow-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px auto;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.button.register-btn:hover .btn-arrow-icon {
  background-color: #f7f7ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.hero__seats {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.hero__seats-filled {
  color: #8C85FF;
}

.hero__seats-available {
  color: #00B090;
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 56px;
  }

  .hero__description {
    font-size: 21px;
  }

  .hero__content {
    flex-basis: 580px;
    max-width: 580px;
  }

  .hero__image {
    flex-basis: 360px;
    min-width: 320px;
    margin-left: -72px;
  }
}

@media (max-width: 991px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 36px 0;
  }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero__content {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .hero__image {
    width: min(100%, 520px);
    min-width: 0;
    margin: 0 auto;
    align-self: center;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__description {
    font-size: 20px;
    margin-top: 18px;
  }

  .hero__list1-items {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__list2-items {
    flex-direction: column;
    gap: 12px;
  }

  .hero__dop-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__seats {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 18px;
    overflow: visible;
  }

  .hero {
    padding: 26px 0 20px;
    overflow: visible;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hero__title {
    order: 1;
  }

  .hero__description {
    order: 2;
  }

  .hero__list1 {
    order: 3;
  }

  .hero__dop-info {
    order: 4;
  }

  .hero__image--mobile {
    display: block;
    visibility: visible;
    order: 5;
    width: 100%;
    max-width: 340px;
    height: auto;
    min-width: 0;
    min-height: auto;
    margin: 12px auto 0;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }

  .hero__list2 {
    order: 6;
  }

  .hero__seats {
    order: 7;
  }

  .hero__dop-info .hero__dop-info-text {
    order: 1;
  }

  .hero__dop-info .button.register-btn {
    order: 2;
    align-self: center;
  }

  .hero__inner {
    gap: 18px;
    overflow: visible;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__description {
    margin-top: 14px;
    font-size: 17px;
  }

  .hero__list1 {
    margin-top: 22px;
  }

  .hero__list1-title {
    font-size: 26px;
  }

  .hero__list1-item {
    align-items: flex-start;
  }

  .hero__list1-item p,
  .hero__list2-item p {
    font-size: 14px;
  }

  .hero__list2 {
    margin-top: 22px;
  }

  .hero__dop-info {
    margin-top: 24px;
    align-items: stretch;
  }

  .hero__dop-info-text {
    font-size: 16px;
  }

  .hero__dop-info-text .fiyat span {
    font-size: 29px;
  }

  .hero__dop-info-text .ilk span {
    font-size: 14px;
  }

  .hero__seats {
    font-size: 14px;
    margin-top: 16px;
    align-items: flex-start;
  }

  .hero__image {
    display: none;
  }

  .hero__image--mobile img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .button.register-btn {
    min-height: 84px;
    font-size: 20px;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    max-width: 100%;
  }

  .button.register-btn::after {
    width: 60px;
    height: 60px;
  }

  .btn-arrow-icon {
    width: 60px;
    height: 60px;
    background-size: 26px auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__description {
    font-size: 15px;
  }

  .button.register-btn {
    min-height: 76px;
    font-size: 17px;
    gap: 10px;
    padding: 8px 12px 8px 8px;
  }

  .button.register-btn::after,
  .btn-arrow-icon {
    width: 52px;
    height: 52px;
  }

  .btn-arrow-icon {
    background-size: 22px auto;
  }
}

/* SYSTEM */
.system {
  position: relative;
  padding: 100px 0 50px;
}

.system__inner {
  position: relative;
  z-index: 2;
}

.system__subtitle {
  font-size: 16px;
  color: #8C85FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: center;
}

.system__title {
  font-size: 56px;
  font-weight: bold;
  text-transform: uppercase;
  background: radial-gradient(circle, #ffffff 30%, #8c85ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  text-align: center;
}

.system__dop-text {
  font-size: 18px;
  color: #888FAA;
  margin-bottom: 48px;
  text-align: center;
}

.system__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}

.system__list-item {
  position: relative;
  isolation: isolate;
  padding: 34px 30px 220px;
  border-radius: 30px;
  background: linear-gradient(180deg, #12161d 0%, #11151c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

.system__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.system__list-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20%;
  height: 80%;
  background:
    radial-gradient(130% 95% at 18% 100%, rgba(115, 87, 255, 0.88) 0%, rgba(115, 87, 255, 0.56) 38%, rgba(115, 87, 255, 0.2) 60%, rgba(115, 87, 255, 0) 80%),
    radial-gradient(95% 72% at 68% 105%, rgba(96, 70, 239, 0.56) 0%, rgba(96, 70, 239, 0.25) 44%, rgba(96, 70, 239, 0) 76%);
  filter: blur(18px);
  opacity: 0.95;
  z-index: 1;
}

.system__item-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 50px;
  height: 50px;
  padding: 6px;
  /* border-radius: 10px; */
  /* background: rgba(101, 84, 255, 0.12); */
  /* border: 1px solid rgba(145, 129, 255, 0.28); */
  z-index: 2;
}

.system__item-title {
  max-width: 80%;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.system__item-text {
  max-width: 78%;
  font-size: 16px;
  color: #c2c8d8;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.system__item-image {
  position: absolute;
  left: 42%;
  right: 0;
  bottom: 0;
  width: 58%;
  /* height: 38%; */
  object-fit: cover;
  border-radius: 34px 0 30px 0;
  z-index: 1;
  filter: saturate(0.84) brightness(0.82) contrast(1.03) hue-rotate(-8deg);
}

.system__item-video {
  position: absolute;
  left: 42%;
  right: 0;
  bottom: 0;
  width: 58%;
  object-fit: cover;
  border-radius: 34px 0 30px 0;
  z-index: 1;
  filter: saturate(0.84) brightness(0.82) contrast(1.03) hue-rotate(-8deg);
}

@media (max-width: 1024px) {
  .system {
    padding: 84px 0 42px;
  }

  .system__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .system {
    padding: 62px 0 26px;
  }

  .system__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .system__title {
    font-size: 34px;
    line-height: 1.08;
  }

  .system__dop-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .system__list-item {
    padding: 26px 22px 170px;
    min-height: 320px;
    border-radius: 24px;
  }

  .system__item-title {
    font-size: 20px;
  }

  .system__item-text {
    font-size: 14px;
    max-width: 84%;
  }

  .system__item-icon {
    width: 28px;
    height: 28px;
  }

  .system__item-image {
    left: 30%;
    width: 70%;
    /* height: 36%; */
    border-radius: 28px 0 24px 0;
  }

  .system__item-video {
    left: 30%;
    width: 70%;
    border-radius: 28px 0 24px 0;
  }
}

@media (max-width: 480px) {
  .system__subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .system__title {
    font-size: 28px;
  }

  .system__dop-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .system__list-item {
    min-height: 300px;
    padding: 20px 16px 150px;
    border-radius: 20px;
  }

  .system__item-title {
    font-size: 18px;
    max-width: 86%;
    margin-bottom: 12px;
  }

  .system__item-text {
    font-size: 13px;
    max-width: 90%;
  }
}

/* REGISTER */
.register-block {
  position: relative;
  border-radius: 35px;
  padding: 100px 30px 100px;
  background: url("assets/register-bg.png") no-repeat center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 50px 0;
}

.register__text {
  position: relative;
  z-index: 1;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.register-top-icons {
  position: absolute;
  top: 24px;
  left: 0px;
  right: 0px;
  overflow: hidden;
}

.register-bottom-icons {
  position: absolute;
  bottom: 24px;
  left: 0px;
  right: 0px;
  overflow: hidden;
}

.register-top-icons-track {
  display: flex;
  width: max-content;
  animation: register-icons-marquee 30s linear infinite;
  will-change: transform;
}

.register-bottom-icons-track {
  display: flex;
  width: max-content;
  animation: register-icons-marquee 30s linear infinite reverse;
  will-change: transform;
}

.register-top-icons-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.register-bottom-icons-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.register-form-block {
  position: relative;
  overflow: hidden;
  margin: 0 0 50px;
  padding: 38px 30px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #12161d 0%, #11151c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.42);
}

.register-form-block::before {
  content: "";
  position: absolute;
  inset: -22% -18% -30% -18%;
  background:
    radial-gradient(44% 54% at 22% 30%, rgba(167, 133, 255, 0.55) 0%, rgba(151, 122, 255, 0.25) 42%, rgba(151, 122, 255, 0) 78%),
    radial-gradient(48% 60% at 78% 34%, rgba(147, 110, 255, 0.52) 0%, rgba(127, 95, 255, 0.22) 42%, rgba(127, 95, 255, 0) 78%),
    radial-gradient(70% 95% at 26% 100%, rgba(158, 120, 255, 0.62) 0%, rgba(121, 90, 255, 0.35) 45%, rgba(121, 90, 255, 0) 78%),
    radial-gradient(58% 88% at 78% 104%, rgba(120, 83, 255, 0.56) 0%, rgba(84, 57, 235, 0.28) 40%, rgba(84, 57, 235, 0) 78%);
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
  transform-origin: 35% 72%;
  animation: form-blur-drift-1 3s ease-in-out infinite;
}

.register-form-block::after {
  content: "";
  position: absolute;
  inset: auto -10% -44% -10%;
  height: 62%;
  background: radial-gradient(58% 88% at 50% 100%, rgba(176, 145, 255, 0.45) 0%, rgba(139, 100, 255, 0.2) 46%, rgba(139, 100, 255, 0) 82%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
  transform-origin: 62% 86%;
  animation: form-blur-drift-2 10s ease-in-out infinite;
}

.register-form-block>* {
  position: relative;
  z-index: 1;
}

.register-form__title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  background: radial-gradient(circle, #ffffff 30%, #8c85ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.register-form__subtitle {
  margin-top: 10px;
  text-align: center;
  color: #a6aec8;
  font-size: 16px;
}

.register-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.register-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-form__field span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8c85ff;
  font-weight: 700;
}

.register-form__field input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 14, 20, 0.9);
  color: #ffffff;
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.register-form__field input::placeholder {
  color: #7d859f;
}

.register-form__field input:focus {
  border-color: rgba(143, 134, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(127, 120, 245, 0.22);
}

.button.register-btn.register-form__submit {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 8px;
  width: 100%;
  min-height: 46px;
  max-height: 46px;
  padding: 5px 14px;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.button.register-btn.register-form__submit::after {
  display: none;
}

.button.register-btn.register-form__submit .btn-arrow-icon {
  width: 34px;
  height: 34px;
  background-size: 16px auto;
}

@media (max-width: 991px) {
  .register-block {
    border-radius: 28px;
    padding: 84px 24px;
    margin: 36px 0;
  }

  .register__text {
    width: 100%;
    font-size: 30px;
  }

  .register-form-block {
    border-radius: 24px;
    padding: 30px 22px 28px;
    margin-bottom: 36px;
  }

  .register-form__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .register-block {
    border-radius: 22px;
    padding: 68px 14px;
    margin: 24px 0;
  }

  .register__text {
    font-size: 24px;
    line-height: 1.25;
  }

  .register-form-block {
    border-radius: 20px;
    padding: 24px 14px 22px;
    margin-bottom: 24px;
  }

  .register-form {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .register-form__title {
    font-size: 25px;
  }

  .register-form__subtitle {
    font-size: 14px;
  }

  .register-form__field input {
    font-size: 15px;
    padding: 12px 14px;
  }

  .button.register-btn.register-form__submit {
    min-height: 44px;
    max-height: 44px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .button.register-btn.register-form__submit .btn-arrow-icon {
    width: 30px;
    height: 30px;
    background-size: 14px auto;
  }

  .register-top-icons,
  .register-bottom-icons {
    display: block;
  }

  .register-top-icons {
    top: 16px;
  }

  .register-bottom-icons {
    bottom: 16px;
  }

  .register-top-icons-group,
  .register-bottom-icons-group {
    gap: 10px;
    padding-right: 10px;
  }

  .register-top-icons-group img,
  .register-bottom-icons-group img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .register__text {
    font-size: 19px;
  }

  .register-form__title {
    font-size: 21px;
  }
}

@media (pointer: coarse),
(hover: none) {
  .cursor-glow {
    display: none;
  }
}

@keyframes register-icons-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes form-blur-drift-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.92;
  }

  25% {
    transform: translate3d(12px, -12px, 0) scale(1.08) rotate(2.5deg);
    opacity: 1;
  }

  50% {
    transform: translate3d(-10px, -18px, 0) scale(1.1) rotate(-2deg);
    opacity: 0.95;
  }

  75% {
    transform: translate3d(-16px, -5px, 0) scale(1.05) rotate(-3.5deg);
    opacity: 0.98;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.92;
  }
}

@keyframes form-blur-drift-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.78;
  }

  30% {
    transform: translate3d(-12px, -10px, 0) scale(1.09) rotate(3deg);
    opacity: 0.9;
  }

  60% {
    transform: translate3d(10px, -14px, 0) scale(1.14) rotate(-2.5deg);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.78;
  }
}

@media (prefers-reduced-motion: reduce) {

  .register-form-block::before,
  .register-form-block::after {
    animation: none;
  }
}