.page-top-bg {
  width: 100vw;
  height: 170px;
  background: linear-gradient(0deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  box-shadow: 0px 4px 24px rgba(50, 50, 50, 0.1);
}

.bg-circle {
/*  width: 50px;*/
  height: 50px;
  border-radius: 50%;
  position: absolute;
  opacity: 0.4;
  background: linear-gradient(0deg, var(--secondary) 0%, var(--primary) 100%);
}

.bg-circle.circle-1 {
  top: -25px;
  left: 30%;
  transform: rotate(180deg);
}

.bg-circle.circle-2 {
  bottom: 3em;
  right: -15px;
}

@media screen and (max-width: 325px) {
  .bg-circle.circle-2 {
    right: 0;
  }
}

@media screen and (min-width: 400px) and (max-width: 1030px) {
  .bg-circle {
    width: 70px;
    height: 70px;
  }

  .bg-circle.circle-1 {
    top: -25px;
  }

  .bg-circle.circle-2 {
    right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .bg-circle {
    width: 100px;
    height: 100px;
  }

  .bg-circle.circle-1 {
    top: -25px;
  }
}

.page-top-bg .logo {
  width: 80px;
  position: absolute;
  top: 2em;
}

.page-top-bg .con {
  margin-top: 2em;
}

.page-top-bg .back {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-border-radius);
  border: 1px solid var(--white);
  background-color: transparent;
}

.page-top-bg .back img {
  width: 50%;
}

.create-profile-page {
  width: 100%;
  height: auto;
  margin-top: -65px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.profile-info-top {
  margin-bottom: 1em;
  text-align: center;
}
.create-profile-page .profile-img-con {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 0.5em;
}

.create-profile-page .profile-img-con img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.create-profile-page .profile-img-con .update-img-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--btn-border-radius);
  background: linear-gradient(0deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  right: 0;
}

.create-profile-page .profile-img-con .update-img-btn img {
  width: 50%;
}

.profile-info-top h3 {
  font-size: 1.4rem;
}

/* ----------------------- create profile form styles ----------------------- */
.create-profile-page .form-con {
  text-align: left;
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 1em;
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
}

.create-profile-page .form-con h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1em;
}
.create-profile-page .form-con h1 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1em;
  text-align: center;
}
.create-profile-page .custom-btn.primary {
  width: 70%;
  margin: 2rem 0;
  align-items: center;
  justify-content: center;
}

.create-profile-page .con > p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.create-profile-page .con > p a {
  color: var(--primary);
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .create-profile-page .custom-btn.primary {
    width: 200px;
    margin: 2rem 0;
  }
}

/* -------------------------- create profile page 2 ------------------------- */
.create-profile-page .license-upload {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: 1em;
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  text-align: left;
}

.create-profile-page .license-upload h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1em;
}

.create-profile-page .license-upload .flex {
  width: 100%;
  display: flex;
  gap: 1em;
}

@media screen and (max-width: 400px) {
  .create-profile-page .license-upload .flex {
    display: flex;
    flex-direction: column;
  }
}

.create-profile-page form {
  text-align: center;
}

.create-profile-page.login form .custom-btn.primary {
  margin: 0 !important;
  margin-top: 2em !important;
}
