:root {
  --accent-color: #3358ff;
  --accent-color: #4681f4;
  --accent-color: #0178b7;

  --text-primary-color: #141f39;
  --text-secondary-color: #fff;
  --text-tertiary-color: #4f4f4f;
  --text-dark: #141f39;

  --bg-color-primary: #fff;
  --bg-color-secondary: #1c1e26;

  --bg-hover-color-primary: #274cc6;
  --bg-hover-color-primary: #1f4386;
  --text-hover-color-primary: #1f4386;

  --input-bg-color: #f5f5f5;
  --confirm-input-bg-color: #e4e4e4;

  --border-color-primary: #ebebeb;
  --border-color-secondary: #ebebeb;
  --box-shadow-color: #0000001a;

  --btn-color-primary: #fff;

  --gradient-effect: #ced5e8;

  --theme-icon-bg: #edf2ff;
}

body[data-theme="dark"] {
  --text-primary-color: #ececec;
  /* --text-secondary-color: #e0e0e0; */
  --text-secondary-color: #fff;
  --text-tertiary-color: #b0b0b0;
  --text-dark: #141f39;

  --bg-color-primary: #121212;
  /* --bg-color-primary: #1a1e26; */
  --bg-hover-color-primary: #1f4386;
  --text-hover-color-primary: #1f4386;

  --input-bg-color: #1b1b1b;
  --confirm-input-bg-color: #1b1b1b;

  --border-color-primary: #444444;
  --border-color-secondary: #9e9e9e;

  --btn-color-primary: #fff;

  --gradient-effect: #759af917;

  --theme-icon-bg: #1b1e27;
}

/* !General */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-color-primary);
  color: var(--text-primary-color);
  font-family: "NotoSansGeorgian", "FiraGO", "Helvetica Neue LT GEO";
  font-size: 16px;
  font-weight: 400;
  padding-top: 72px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

.prevent-h-scroll {
  overflow-x: hidden;
  /* max-width: 1440px; */
  margin: 0 auto;
}

.prevent-scroll {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  padding: 11px 20px;
  background-color: var(--accent-color);
  color: var(--text-secondary-color);
  white-space: nowrap;
  font-feature-settings: "case";
  text-transform: uppercase;
  border-radius: 10px !important;
  border: none;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover {
  color: var(--btn-color-primary);
  background-color: var(--bg-hover-color-primary);
}

.btn:active {
  background-color: var(--bg-hover-color-primary) !important;
  color: var(--btn-color-primary) !important;
  transform: translateY(3px);
}

.disabled {
  background-color: var(--bg-hover-color-primary);
}

.btn-plain:hover {
  color: var(--text-hover-color-primary);
}

.page-wrapper {
  margin-block: 4.875rem;
}

.page-wrapper > h1 {
  color: var(--text-primary-color);
  font-size: 32px;
  text-align: center;
  margin-bottom: 3rem;
  font-feature-settings: "case";
  text-transform: uppercase;
}

.light-icon {
  background-color: var(--theme-icon-bg);
  border-radius: 50%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s;
}
.dark-icon {
  background-color: var(--theme-icon-bg);
  border-radius: 50%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s;
}

.light-mode-icon,
.dark-mode-icon {
  place-items: center;
}

[data-theme="dark"] .theme-switch .light-icon {
  /* display: flex; */
  transform: translateX(0);
  opacity: 1;
}

[data-theme="dark"] .theme-switch .dark-icon {
  /* display: none; */
  transform: translateX(-50%);
  opacity: 0;
}

[data-theme="light"] .theme-switch .light-icon {
  /* display: none; */
  transform: translateX(50%);
  opacity: 0;
}

[data-theme="light"] .theme-switch .dark-icon {
  /* display: flex; */
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 15px;
    font-size: 15px;
  }

  .page-wrapper {
    margin-block: 3rem;
  }

  .page-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* !Header */
.header {
  padding: 10px 0;
  display: flex;
  align-items: center;
  z-index: 1000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);

  /* background: linear-gradient(to bottom, #ced5e8, #e3ebff); */
  transition: background-color 0.3s ease-in-out;
}

body[data-theme="light"] .header {
  /* background-color: #fff; */
  background: linear-gradient(to right, #e4ebff, #fff, #e4ebff);
}

body[data-theme="dark"] .dark-logo {
  display: none;
}
body[data-theme="light"] .light-logo {
  display: none;
}

/* body[data-theme="light"] .header {
  background-color: var(--bg-color-secondary);
  color: var(--text-secondary-color);
} */

.header-scroll {
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  background-color: var(--bg-color-primary);
}
/* body[data-theme="light"] .header-scroll {
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  background: linear-gradient(to bottom, #ced5e8, white);
} */

.header-content {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo a {
  display: flex;
  align-items: center;
}
.logo a svg {
  height: 50px;
  width: auto;
  margin-left: 3px;
}
.footer .logo a svg {
  height: 84px;
  width: auto;
  margin-left: 3px;
}

/* body[data-theme="light"] .logo a svg path {
  stroke: #63aacf;
  stroke: #487eb6;
  stroke-width: 3px;
}
body[data-theme="light"] .logo a svg rect {
  stroke: #63aacf;
  stroke: #487eb6;
  stroke-width: 3px;
} */

.logo h2 {
  margin: 0;
}

.navigation-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 5.25rem;
}

.navigation-cta-wrapper .logo {
  display: none;
}

.navigation {
  /* max-width: 560px; */
  width: 100%;
}

.navigation ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.navigation ul a {
  font-weight: 500;
  font-feature-settings: "case";
  text-transform: uppercase;
  white-space: nowrap;
}

.navigation ul a:hover {
  color: var(--text-hover-color-primary);
}

.navigation ul a.active {
  color: var(--text-hover-color-primary);
}

.theme-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  cursor: pointer;
  width: 60px;
  height: 35px;
  /* background-color: #76818d56; */
  background-color: #76818d2d;
  padding: 3px;
  /* border: 1px solid var(--border-color-primary); */
  border-radius: 20px;
}

/* body[data-theme="light"] .theme-switch {
  border: 1px solid #121e38;
}
body[data-theme="light"] .dark-icon {
  border: 1px solid #121e38;
} */

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .lang a {
  font-weight: 600;
}

.lang:hover a {
  color: var(--text-hover-color-primary);
}

.menu-button {
  display: none;
}

.try-for-free {
  /* height: 36px;
  padding-block: 0;
  padding-inline: 12px;
  display: flex;
  align-items: center; */
}

.try-for-free-mobile {
  display: none;
}

@media (max-width: 1170px) {
  .navigation-cta-wrapper {
    gap: 1rem;
  }

  .navigation ul {
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .header {
    justify-content: flex-end;
  }

  .navigation-cta-wrapper {
    display: none;
    background-color: var(--bg-color-primary);
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 1rem;
    z-index: 10;
  }

  .navigation-cta-wrapper.mobile-navigation {
    display: flex;
  }

  .logo {
    height: 36px;
  }

  .logo a {
    height: 100%;
  }
  .logo a img {
    height: 100%;
    width: auto;
  }

  .navigation-cta-wrapper .logo {
    display: flex;
  }

  .navigation ul {
    flex-direction: column;
  }

  .header-cta {
    /* flex-direction: column; */
  }

  .try-for-free-mobile {
    display: block;
  }
  .try-for-free {
    display: none;
  }

  .menu-button {
    width: 25px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 1rem;
  }

  .menu-button,
  .menu-button.open {
    z-index: 10;
  }

  .menu-button .menu-button-line {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary-color);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }

  .menu-button-line:nth-child(1) {
    transform-origin: top left;
  }

  .menu-button.open > .menu-button-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-button.open > .menu-button-line:nth-child(2) {
    opacity: 0;
  }

  .menu-button-line:nth-child(3) {
    transform-origin: bottom left;
  }

  .menu-button.open > .menu-button-line:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* body[data-theme="light"] {
  background: linear-gradient(to bottom, #ced5e8, #e3ebff);
} */

/* !Gradient */
.top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, var(--gradient-effect), transparent);
  /* background: linear-gradient(to bottom, #ced5e8, #e3ebff); */
  z-index: -1;
}

.grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

/* !Hero */
.hero {
  position: relative;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.125rem;
}

.blob-1 {
  opacity: 0.5;
  width: 80px;
  position: absolute;
  top: 0;
  left: -5%;
  z-index: -1;
  animation: float-random 9s 1s infinite ease-in-out reverse;
}

.blob-2 {
  opacity: 0.5;
  width: 80px;
  position: absolute;
  top: 50%;
  right: -5%;
  z-index: -1;
  animation: float-random 9s infinite ease-in-out alternate;
}

@keyframes float-random {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(10px, -10px);
  }

  40% {
    transform: translate(-20px, 5px);
  }

  60% {
    transform: translate(10px, 10px);
  }

  80% {
    transform: translate(-10px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hero-description {
  display: flex;
  flex-direction: column;
  /* gap: 2.25rem; */
}

.hero-description h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 100%;
  font-feature-settings: "case";
  text-transform: uppercase;
}

.hero-description p {
  font-size: 18px;
  color: var(--text-tertiary-color);
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 35px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }

  .hero-description h2 {
    /* text-align: center; */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 130%;
  }

  .hero-description p {
    /* text-align: center; */
    font-size: 16px;
  }

  .hero-cta {
    margin-top: 1rem;
    gap: 1rem;
    justify-content: center;
  }

  .hero-img img {
    border-radius: 15px;
    object-fit: contain;
    max-height: 300px;
  }
}

/* !Services */
.services-container {
  padding-top: 80px;
  margin-top: 60px;
}

.services-container h3 {
  color: var(--text-primary-color);
  font-feature-settings: "case";
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
}

.services-container p {
  color: var(--text-tertiary-color);
}

.services-container b {
  color: var(--text-primary-color);
}

.features i {
  color: var(--accent-color) !important;
}

.services-container .section-title h3 {
  font-feature-settings: "case";
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
}

.dashboard-img {
  position: relative;
  overflow: hidden;
  touch-action: none;
  /* padding-inline: 1rem; */
  padding-inline: 0;
}

.dashboard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease;
  transform-origin: center center;
  cursor: zoom-in;
  border-radius: 8px;
}

.medium-zoom-overlay {
  z-index: 5000;
}
.medium-zoom-overlay + img {
  z-index: 5500;
}

@media (max-width: 768px) {
  .services-container {
    margin-top: 70px;
  }

  .section-title .title {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title .title {
    margin-top: auto;
  }
}

/* !Prices */
.prices-container {
  padding-top: 80px;
  margin-top: 120px;
}

.prices-container h3 {
  font-size: 2rem;
  text-align: center;
  font-feature-settings: "case";
  text-transform: uppercase;
  font-weight: bold;
}

.prices-container p {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1rem;
  color: var(--text-tertiary-color);
}

.prices-container > a {
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 1.25rem;
  margin-top: 0.2rem;
  color: var(--text-tertiary-color);
}

.selects-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.generate-wrapper .selects-wrapper {
  margin-top: 0;
}

.choose-period {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: min-content;
  /* margin: 0 auto; */
  /* margin-top: 3rem; */
}

.choose-period-web-builder {
  margin-top: 0;
}

.choose-memory {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nice-select {
  background-color: transparent;
  border-radius: 8px;
  width: 100%;
}

.nice-select .nice-select-dropdown {
  width: 100%;
  background-color: var(--bg-color-primary);
  border: 1px solid var(--border-color-secondary);
  border-radius: 8px;
}
.nice-select .nice-select-dropdown .list {
  margin-bottom: 0;
}

.nice-select .option {
  color: var(--text-primary-color);
}

.nice-select .option:hover {
  color: var(--text-dark);
}
.nice-select .option.selected {
  color: var(--text-dark);
  color: #0178b7;
}
/* .nice-select .option.selected:not(:hover) {
  color: var(--text-primary-color);
} */
/* .nice-select .option:not(:hover){
  color: var(--text-primary-color);
} */

.choose-period label,
.choose-memory {
  font-size: 16px;
  white-space: nowrap;
}

/* Packages */
.package-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.toggle-switch {
  width: 50px;
  height: 28px;
  background-color: #76818d59;
  display: inline-block;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch::after {
  content: "";
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

#package-toggle:checked + .toggle-switch {
  /* background-color: #4274ff; */
  background-color: var(--accent-color);
}

#package-toggle:checked + .toggle-switch::after {
  transform: translateX(22px);
}

.auth-links {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.forgot-password a,
.generatewebsite a {
  text-decoration: none;
  color: #0178b7; 
  font-size: 14px;
}

.forgot-password a:hover,
.generatewebsite a:hover {
  text-decoration: underline;
}

/* Prices */
.prices {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.price-card {
  max-width: 550px;
  width: 100%;
  border: 1px solid var(--border-color-primary);
  border-radius: 15px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px var(--box-shadow-color);
  transition: transform 0.2s;
}

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-card:hover {
  transform: scale(1.02);
}

.price-card .price .price-tag {
  font-size: 2rem;
  font-weight: bold;
}

.price-card .price .old-price {
  font-size: 1rem;
  font-weight: bold;
}
.price-card .price .price-saving {
  font-size: 1rem;
  font-weight: bold;
}

.price-card .price sup {
  font-size: 1rem;
  font-weight: bold;
  margin-left: 0.3rem;
}

.price-card-top {
  padding: 0 1rem 2rem;
}

.price-card-top h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-feature-settings: "case";
  text-transform: uppercase;
}

.price-card-bottom {
  border-top: 1px solid var(--border-color-primary);
  padding: 2rem 1rem 0;
  display: grid;
  grid-template-rows: auto min-content;
  height: 100%;
  gap: 2rem;
}

.price-card-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.price-card-bottom ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  font-size: 18px;
  align-items: center;
}

.price-card-bottom ul li span {
  color: var(--text-tertiary-color);
}

.price-card-bottom ul li i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  background-color: #e5f1ff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.card-cta {
  width: 100%;
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 850px) {
  .prices {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .prices-container {
    margin-top: 70px;
  }

  .prices-container h3 {
    font-size: 2rem;
  }

  .prices-container p {
    font-size: 1rem;
  }

  .price-card {
    max-width: 400px;
    padding: 1.5rem 1rem;
  }

  .price-card .price span {
    font-size: 1.5rem;
  }

  .price-card-top {
    padding: 0 0.5rem 1rem;
  }

  .price-card-top h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .price-card-bottom {
    border-top: 1px solid #f4f5f9;
    padding: 1rem 0.5rem 0;
  }

  .price-card-bottom ul {
    gap: 0.5rem;
    padding: 0;
    margin: 0;
  }

  .price-card-bottom ul li {
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
  }

  .price-card-bottom ul li i {
    width: 16px;
    height: 16px;
  }

  .card-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* !FAQ */
.faq-container {
  padding-top: 80px;
  margin-top: 100px;
  margin-bottom: 150px;
}

.faq-container h3 {
  font-size: 2rem;
  text-align: center;
  font-feature-settings: "case";
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 3rem;
  color: var(--text-primary-color);
}

.faq-container p {
  color: var(--text-tertiary-color);
}

.faq-split {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border-color-primary);
}

.faq-accordion {
  padding-top: 16px;
  padding-bottom: 16px;
}

.accordion-item-trigger {
  cursor: pointer;
  font-size: 18px;
  line-height: 140%;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  /* justify-content: space-between; */
  gap: 18px;
  transition: all 0.2s;
}

.accordion-item-trigger:hover {
  opacity: 0.69;
}

.accordion-anchor {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.accordion-anchor span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary-color);
  transition: transform 0.2s;
}

.accordion-anchor span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%);
}

.accordion-anchor span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.accordion-anchor.acc-open span:nth-child(2) {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-item-content p {
  overflow: hidden;
  /*max-height: 0;*/
  margin: 0;
  padding: 0;
  /*transition: max-height 0.3s;*/
}

.accordion-item-content.is-open {
  grid-template-rows: 1fr;
}

@media (max-width: 768px) {
  .faq-container {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .faq-container h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

/* !Footer */
.footer {
  padding: 2rem 1rem 1rem;
  position: relative;
  overflow: hidden;
}

/* body[data-theme="light"] .footer {
  background-color: var(--bg-color-secondary);
  color: var(--text-secondary-color);
} */

.footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

body[data-theme="dark"] .footer-bg {
  display: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr min-content;
  align-items: start;
  gap: 2rem 4rem;
}

.footer-content .logo {
  width: fit-content;
}

.footer h4 {
  font-size: 16px;
  font-weight: 800;
  font-feature-settings: "case";
  text-transform: uppercase;
}

.footer-navigation {
  width: min-content;
  justify-self: start;
}

.footer-navigation .navigation ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-navigation .navigation ul li a {
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--text-tertiary-color);
  transition: color 0.2s;
}

.footer-navigation .navigation ul li a:hover {
  color: var(--text-hover-color-primary);
}

.footer-navigation h4 {
  margin-bottom: 1.5rem;
}

.contact {
  justify-self: start;
  width: min-content;
}

.contact h4 {
  margin-bottom: 1.5rem;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact a {
  white-space: nowrap;
  color: var(--text-tertiary-color);
  transition: color 0.2s;
}

.contact a:hover {
  color: var(--text-hover-color-primary);
}

.social-media {
  justify-self: end;
  width: min-content;
}

.social-media h4 {
  white-space: nowrap;
  margin-bottom: 1.5rem;
}

.social-media-links {
  display: flex;
  gap: 1rem;
}

.social-media-links a {
  transform: scale(1.3);
  color: var(--text-tertiary-color);
  transition: color 0.2s, transform 0.2s;
}

.social-media-links a:hover {
  transform: scale(1.5);
  color: var(--text-hover-color-primary);
}

.rights {
  grid-column: 1 / 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-color-primary);
  padding-top: 1rem;
}

.rights p {
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

.footer-payments {
  display: flex;
  gap: 0.25rem;
}

.footer-payments img {
  max-width: 35px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-content .logo {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-navigation {
    justify-self: start;
  }

  .footer-navigation h4 {
    margin-bottom: 1rem;
  }

  .contact {
    justify-self: start;
  }

  .contact h4 {
    margin-bottom: 1rem;
  }

  .social-media {
    justify-self: start;
  }

  .social-media h4 {
    margin-bottom: 1rem;
  }

  .rights {
    grid-column: 1 / -1;
  }

  .rights p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* !Generate */
.generate-wrapper h1 {
  color: var(--text-primary-color);
  margin-bottom: 2rem;
}

.form-block {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--black);
  background-color: var(--bg-color-primary);
  border-radius: 8px;
  margin-bottom: 0;
  padding: 40px;
  box-shadow: 0 2px 6px var(--box-shadow-color);
}

.form-block h4 {
  text-align: center;
}

.auth-block {
  max-width: 550px;
  margin: 0 auto;
  color: var(--black);
  background-color: var(--bg-color-primary);
  border-radius: 8px;
  margin-bottom: 0;
  padding: 40px;
  box-shadow: 0 2px 6px var(--box-shadow-color);
}

.auth-block h4 {
  text-align: center;
}

#generate-form {
  max-width: 510px;
  width: 100%;
}

.form {
  gap: 25px;
  flex-flow: column;
  margin: 0 auto;
  display: flex;
}

/* .form input {
  outline: none;
  margin-top: 0.5rem;
} */

/* .form input {
  background-color: var(--input-bg-color);
  border-color: var(--border-color-primary);
  border-radius: 10px;
  color: var(--text-primary-color);
} */

/* .form input::placeholder {
  color: var(--text-tertiary-color);
} */

/* .form input:focus {
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
} */

.form input {
  /* background-color: var(--input-bg-color);
  color: var(--text-primary-color);
  margin-top: 0.5rem;
  padding: 10px 10px;
  border: 2px solid var(--border-color-primary);
  border-radius: 10px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s; */

  margin-top: 0.5rem;
  width: 100%;
  /* padding: 0.875rem; */
  padding: 10px 10px;
  border: 2px solid var(--border-color-primary);
  /* border-radius: 8px; */
  border-radius: 10px;
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form input:focus {
  /* outline: 2px solid #23a2e4; */
  border-color: #0178b7;
  box-shadow: 0 0 0 3px rgba(1, 120, 183, 0.1);
}
.input-error:focus {
  border: 2px solid #ff4747;
  box-shadow: 0 0 0 3px #ff9393;
}

body[data-theme="dark"] .form input {
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
  margin-top: 0.5rem;
  border: 2px solid var(--border-color-primary);
  outline: none;
}
body[data-theme="dark"] .form input:focus {
  border: 2px solid #23a2e4;
  box-shadow: 0 0 0 3px #46bfff57;
}

/* !Password */
.password-wrapper {
  margin-top: 10px;
  position: relative;
}

.password-eye-btn {
  display: flex;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-eye-slash {
  display: none;
  width: 22px;
  height: 22px;
  fill: #757575;
}
.password-eye {
  display: none;
  width: 22px;
  height: 22px;
  fill: #757575;
}
.active-eye {
  display: block;
}

#phone_digits {
  font-size: 16px;
}

.iti {
  width: 100%;
  margin-top: 0.5rem;
}
.iti--inline-dropdown .iti__dropdown-content {
  background-color: var(--input-bg-color);
  padding: 0.5rem;
  border-radius: 10px;
  border: 2px solid var(--border-color-primary);
}
.form .iti__search-input {
  padding-block: 6px;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.iti__country {
  color: var(--text-primary-color);
}

.webpage-name-highlight {
  grid-column: 1/-1;
  font-size: 16px;
  margin-bottom: 5px !important;
}

.webpage-name-highlight .shop-name-address {
  color: var(--accent-color);
  font-weight: bold;
}

.shop-name-rules {
  grid-column: 1/-1;
}

.form .blue-button {
  display: flex;
  justify-content: center;
  gap: 5px;
  /* max-width: 300px; */
}

.form .input-error {
  color: red;
  font-size: 12px;
  display: none;
}

.form p {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rc-anchor-dark.rc-anchor-normal,
.rc-anchor-dark.rc-anchor-compact {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: auto;
  }
}

.form-group.invalid .input-error {
  display: block;
}

.text-field {
  border: 1px #000;
  border-bottom: 1px solid #0000001a;
  /* height: 56px; */
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

.form-group.invalid .text-field {
  border-bottom: 1px solid red;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.split-fields {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.radio-button {
  border: 1px solid #0000001a;
  width: 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 10px;
}

body[data-theme="dark"] .radio-button {
  color-scheme: dark;
}

.radio-button.w--redirected-checked {
  border-width: 5px;
  border-color: var(--blue);
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.radio-button-field input {
  margin-top: 0;
}

.radio-button-label {
  margin-bottom: 0;
}

.radio-button-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
  align-items: center;
}

.service-plan-card {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border: 2px solid var(--border-color-primary);
  border-radius: 10px;
  cursor: pointer;
}

.service-plan-card .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.service-plan-card.active-service {
  border-color: var(--accent-color);
}

.service-plan-card-header {
  display: flex;
  align-items: center;
}

.price-tag {
  font-size: 18px;
}

.old-price {
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 8px;
  color: #878787;
}

.price-saving {
  border-radius: 20px;
  /* padding: 0.2rem; */
  color: var(--accent-color);
  font-size: 14px;
  margin-left: 0.5rem;
  /* background-color: var(--accent-color); */
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox {
  width: 16px;
  height: 16px;
}

.top-tag {
  background-color: var(--blue);
  color: var(--white);
  letter-spacing: 0.1em;
  border-radius: 10px;
  margin-left: 5px;
  padding: 4px 8px;
  font-family: "Helvetica Neue LT GEO";
  font-size: 9px;
  line-height: 100%;
}

.full-width {
  width: 100%;
}

.tiny-text {
  font-size: 14px;
  line-height: 130%;
}

.field-label {
  font-weight: 400;
}

.radio-button-field span {
  font-weight: 400;
}

.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  margin: 4px 0 0;
  line-height: normal;
  float: left;
  margin-left: -20px;
}

.w-radio-input {
  margin-top: 3px;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  /* height: 38px; */
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
}

.w-input::placeholder,
.w-select::placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.shop-name-input-wrapper {
  display: grid;
  grid-template-columns: 2fr auto;
  align-items: center;
  gap: 0 1rem;
}

.shop-name-input-wrapper input[type="button"] {
  height: 40px;
}

.shop-name-input {
  position: relative;
}

.shop-name-mark {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-54%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  /*background-color: #009e63;*/
  border-radius: 50%;
  align-self: center;
}

.shop-name-mark svg {
  display: none;
}

.shop-name-input-wrapper .input-error {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.show {
  display: inline-block !important;
}

.top-tag {
  background-color: var(--accent-color);
  color: var(--text-secondary-color);
  letter-spacing: 0.1em;
  border-radius: 10px;
  margin-left: 10px;
  padding: 4px 8px;
  /* font-family: "Helvetica Neue LT GEO"; */
  text-transform: uppercase;
  font-size: 9px;
  line-height: 100%;
}

.radio-button-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
  align-items: center;
}

.radio-btns-wrapper {
  display: flex;
  gap: 1.25rem;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.shop-name-rules,
.shop-rules {
  font-size: 14px;
  color: #f65b00;
  /*color: #ff0000;*/
  color: #7d7d7d;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: left;
}

.shop-rules {
  text-align: center;
}

.shop-name-rules a,
.shop-rules a {
  font-size: 14px;
  color: var(--accent-color);
}

.form-submit-btn {
  width: min-content;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .radio-btns-wrapper {
    flex-direction: column;
  }

  .shop-name-rules {
    grid-column: 1/-1;
    grid-row: 5;
  }
}
@media (max-width: 768px) {
  .shop-name-input-wrapper {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .check-shop-name-btn {
    grid-row: 3;
    grid-column: 1/-1;
  }
  .webpage-name-highlight {
    grid-row: 4;
  }
}

/* !loading */
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

.loading-section {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  /*background-color: #00000085;*/
  z-index: 10;
}

.show-loading-section {
  display: flex;
}

.loading-container {
  /*background: #191c29;*/
  background: var(--bg-color-primary);
  width: 50%;
  height: 40vh;
  padding: 10px;
  position: relative;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1.5vw;
  color: rgb(88 199 250 / 0%);
}

.loading-container::before {
  content: "";
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  border-radius: 12px;
  background-image: linear-gradient(
    var(--rotate),
    #5ddcff,
    #3c67e3 43%,
    #4e00c2
  );
  position: absolute;
  z-index: -1;
  /*top: -5%;*/
  /*left: -1.5%;*/
  /* animation: spin 2.5s linear infinite; */
}

/* .loading-container::after {
  position: absolute;
  content: "";
  top: -25%;
  left: -15%;
  right: 0;
  z-index: -1;
  height: 150%;
  width: 130%;
  margin: 0 auto;
  transform: scale(0.8);
  border-radius: 8px;
  filter: blur(50px);
  background-image: linear-gradient(
    var(--rotate),
    #5ddcff,
    #3c67e3 43%,
    #4e00c2
  );
  opacity: 1;
  transition: opacity 0.5s;
  animation: spin 2.5s linear infinite;
} */

.generation-end {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.generation-end p {
  color: var(--text-primary-color);
  line-height: 1.3;
  text-align: center;
  font-size: max(1.3vw, 15px);
}

.generation-end-btns {
  display: flex;
  gap: 10px;
}

.generation-end a {
  /*color: var(--color-accent-primary);*/
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: max(1vw, 14px);
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }

  100% {
    --rotate: 360deg;
  }
}

.loading-text {
  color: var(--text-primary-color);
  white-space: nowrap;
  position: absolute;
  opacity: 0;
  margin: 0 auto;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

[data-theme="light"] .loading-text {
  color: var(--text-primary-color);
}

.loading-text.old {
  opacity: 0;
  transform: translate(0, -100%);
}

.loading-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* !Contact */
.info-wrap {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.info-item {
  align-items: center;
}

.info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.info-item h3 {
  font-size: 18px;
}

.info-item p {
  margin: 0;
}

.contact-form {
  max-width: 900px;

  border-radius: 10px;
  border: 1px solid var(--border-color-primary);
  padding: 2rem;
  margin-block: 2rem;
  margin-inline: auto;
  box-shadow: 0 2px 6px var(--box-shadow-color);
}

.other-service {
  display: none;
}

.contact-form input {
  background-color: var(--input-bg-color);
  border-color: var(--border-color-primary);
  color: var(--text-primary-color);
}

.contact-form input::placeholder {
  color: var(--text-tertiary-color);
}

.contact-form input:focus {
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
}

.contact-form select {
  width: 100%;
}

.wide {
  width: 100% !important;
  background-color: var(--bg-color-primary) !important;
  color: var(--text-primary-color) !important;
}

.wide .list {
  background-color: var(--bg-color-primary) !important;
}

.wide .option {
  background-color: var(--bg-color-primary) !important;
  color: var(--text-primary-color) !important;
}

.wide .option:hover,
.wide .option:focus {
  background-color: var(--bg-color-primary) !important;
  color: var(--text-primary-color) !important;
}

.wide .current {
  background-color: var(--bg-color-primary) !important;
  color: var(--text-primary-color) !important;
}

.contact-form textarea {
  background-color: var(--input-bg-color);
  border-color: var(--border-color-primary);
  color: var(--text-primary-color);
}

.contact-form textarea:focus {
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
}

.contact-form textarea::placeholder {
  color: var(--text-tertiary-color);
}

@media (max-width: 768px) {
  .info-wrap {
    width: min-content;
    margin-inline: auto;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact-form {
    padding: 0 1rem 2rem;
    margin-block: 1rem 2rem;
  }
}

/* !Email Confirmation page */
.email-confirmation-section {
  padding-top: 100px;
  min-height: calc(100vh - 92px);
  display: flex;
  place-items: center;
}

.email-verification-heading {
  font-size: 3rem;
  text-align: center;
}

.email-verification-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
  padding: 4rem 4rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px var(--box-shadow-color);
  backdrop-filter: blur(24px);
  background-color: var(--bg-color-primary);
  /* border: 1px solid var(--border-color-primary); */
}

.email-verification-form .form-group {
  display: flex;
  place-items: center;
}

.email-verification-form .form-input {
  display: block;
  height: 65px;
  width: 65px;
  margin-right: 0.5rem;
  text-align: center;
  font-size: 1.875rem;
  min-width: 0;
  color: var(--text-primary-color);
  border-radius: 10px;
  border: 1px solid var(--border-color-secondary);
  background-color: var(--confirm-input-bg-color);
  transition: outline 0.2s;
}

.email-verification-form .form-input:focus {
  outline: 4px solid #006affad;
  /*border: 1px solid var(--text-color-secondary);*/
}

.email-verification-form .form-input:last-child {
  margin-right: 0;
}

.email-verification-form .input-error {
  color: #ff0000;
  margin-top: 1rem;
}

.email-verification-form .btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.email-verification-form .resend-btn-wrapper {
  display: flex;
  justify-content: center;
  /*gap: 0.5rem;*/
}

.email-verification-form .resend-btn-wrapper .resend-timer {
  min-width: 40px;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
  padding: 5px;
  display: none;
  justify-content: center;
}

.blue-text-button {
  color: var(--accent-color);
  background-color: transparent;
  border: none;
}

.warning {
}

@media (max-width: 991px) {
  .email-verification-heading {
    font-size: 2rem;
  }

  .email-verification-form {
    padding: 2rem 1rem;
  }

  .email-verification-form .form-input {
    height: 50px;
    width: 100%;
    max-width: 37px;
    font-size: 1.5rem;
  }
}

/* !About-us */

.about-us-wrapper h1 {
  color: var(--text-primary-color);
}

.about-us h4 {
  color: var(--text-primary-color);
}

.about-us p {
  color: var(--text-tertiary-color);
}

/* !Rights */

.right-wrapper h2 {
  color: var(--text-primary-color);
}

.right-wrapper p {
  color: var(--text-tertiary-color);
}

.right-wrapper strong {
  color: var(--text-primary-color);
}

/* !Login */

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.form-submit-btn.loading span:first-child {
  opacity: 0;
}

.form-submit-btn.loading .loader {
  display: block !important;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.form-submit-btn:disabled:hover {
  background: #0178b7 !important;
  transform: none !important;
  box-shadow: none !important;
}

.form-field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.login-block h1 {
  text-align: center;
}

.login-block .general-error-field {
  text-align: center;
  color: red;
  font-size: 12px;
}
.social-login-buttons {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.google-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  background: var(--input-bg-color);
  border: 2px solid var(--border-color-primary);
  border-radius: 8px;
  color: var(--text-primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.google-btn:hover {
  color: #374151;
  background-color: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.google-btn img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
body[data-theme="dark"] .google-btn:hover {
  background-color: var(--bg-color-secondary);
  color: #fff;
}

.form-group .email-input {
  /* width: 100%; */
  /* padding: 0.875rem; */
  /* padding: 10px 10px;
  border: 2px solid #d1d5db; */
  /* border-radius: 8px; */
  /* border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box; */
}
/* .form-group .email-input:focus {
  border-color: #0178b7;
  box-shadow: 0 0 0 3px rgba(1, 120, 183, 0.1);
  outline: none;
} */
body[data-theme="dark"] .form-group .email-input {
  /* background-color: var(--input-bg-color); */
  /* color: var(--text-primary-color); */
  /* margin-top: 0.5rem; */
  /* padding: 10px 10px; */
  /* border: 2px solid var(--border-color-primary); */
  /* border-radius: 10px; */
  /* outline: none; */
  /* transition: border 0.3s, box-shadow 0.3s; */
}
/* body[data-theme="dark"] .form-group .email-input:focus {
  border: 2px solid #23a2e4;
  box-shadow: 0 0 0 3px #a5e0ff;
} */



.forgot-password {
  text-align: right;
  margin-bottom: 1.5rem;
}
.forgot-password a {
  color: #0178b7;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.forgot-password a:hover {
  color: #1f4386;
}

.login-block .form-submit-btn {
  position: relative;
  width: 100%;
}
.login-block .form-submit-btn:hover {
  background: #1f4386;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 120, 183, 0.3);
}
.login-block .form-submit-btn:active {
  transform: translateY(0);
}
.login-block .form-submit-btn.loading {
  background: #1f4386;
}

.login-block .form-submit-btn .btn-text {
  transition: opacity 0.2s ease;
}
.login-block .form-submit-btn .loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
