@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.signUp {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 20px;
}
.signUp__container {
  background: linear-gradient(347.29deg, #379fff 17.13%, #0888ff 96.38%);
  border-radius: 20px;
  max-width: 1240px;
  width: 100%;
  padding: 78px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.signUp__container__earth {
  position: absolute;
  max-width: 679px;
  height: 648px;
  top: 50px;
  right: -60px;
  z-index: 20;
}
.signUp__container__elipse {
  width: 1266.508271134892px;
  height: 1266.508271134892px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 52.08%
  );
  opacity: 10%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  right: -20%;
}
.signUp__container-left {
  position: relative;
  z-index: 30;
  max-width: 610px;
  width: 100%;
}
.signUp__container-right {
  position: relative;
  z-index: 30;
}
.signUp__container-left__title {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  max-width: 597px;
  color: white;
  margin-bottom: 16px;
}
.signUp__container-left__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: white;
  margin-bottom: 40px;
}
.signUp__container-left__form {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
}
.signUp__container-left__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.signUp__container-left__form-row__input-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.signUp__container-left__form-row__input {
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  width: 100%;
  outline: none;
  padding: 14px 12px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.signUp__container-left__form-row__phone-input-group {
  align-items: center;
  gap: 5px;
}


.signUp__container-left__form-row__country-select{
  max-width: 75px;
  width: 100%;
}

 .signUp__container-left__form-row__phone-input-group {
        display: flex;
        gap: 8px;
      }
      .signUp__container-left__form-row__country-select {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: black;
        font-size: 14px;
        outline: none;
        transition: all 0.3s ease;
      }
      .signUp__container-left__form-row__country-select:focus {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
      }
      .signUp__container-left__form-row__country-select option {
        background: #0888ff;
        color: white;
      }

.signUp__container-left__form-row__label {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #000000;
}

.signUp__container-left__form__btn {
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #1f94ff;
  padding: 16px;
  font-family: TT Firs Neue, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  position: relative;
  min-height: 56px;
}

.dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: 0.9s;
  --uib-color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.8);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 1024px) {
  .signUp__container-right,
  .signUp__container__earth,
  .signUp__container__elipse {
    display: none;
  }
}
.signUp__container__earth-mobile {
  display: none;
}
@media (max-width: 768px) {
  .signUp {
    padding: 20px;
  }
  .signUp__container {
    background: transparent;
    padding: 0;
    justify-content: center;
  }
  .signUp__container-left__text-box {
    background: linear-gradient(347.29deg, #379fff 17.13%, #0888ff 96.38%);
    padding: 40px 20px 158px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-width: none;
    width: 100%;
  }
  .signUp__container-left__text {
    margin-bottom: 0;
  }
  .signUp__container-left__title {
    font-size: 24px;
  }
  .signUp__container-left__text {
    font-size: 16px;
  }
  .signUp__container__earth-mobile {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 679px;
    height: 648px;
    left: -160px;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
  }
  .signUp__container-left__form-row {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
  .signUp__container-right {
    display: none;
  }
}
