.main-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.login-left-side {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}

.login-left-image {
  width: 90%;
  height: 95%;
  border-radius: 20px;
  background-image: url('../../assets/images/login.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.login-right-side {
  width: 50%;
  padding: 40px 50px;
  position: absolute;
  right: 0;
}

.logo img {
  width: 150px;
}

.greetings {
  display: flex;
  align-items: center;
  gap: 4px;
}

.greetings img {
  width: 40px;
}

.greetings p {
  font-size: 25px;
  font-family: 'Proxima Nova Semibold';
  color: var(--textColor);
}

.vendor-signup-greetings p {
  font-family: var(--mtnRegular);
  margin-top: 5px;
}

.progress-trackers {
  padding: 40px 0 20px 0;
}

.progress-tracker {
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-indicator {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grayColor);
}

.progress-tracker .active {
  background-color: var(--blueColor);
  color: var(--whiteColor);
}

.progress-indicator p {
  font-family: var(--mtnBold);
}

.progress-divider {
  height: 5px;
  width: 60%;
  background-color: var(--grayColor);
}

.progress-divider-fill {
  background-color: var(--blueColor);
}

.progress-text {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.progress-text p {
  width: 80px;
  text-align: center;
  font-family: var(--mtnRegular);
  font-size: 15px;
  color: var(--textColor);
  margin-top: 8px;
}

.progress-text .active {
  color: var(--blueColor);
  font-family: var(--mtnBold);
}

.type-checkboxes {
  margin-top: 10px;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 10px;
}

.type-checkboxes div {
  display: flex;
  font-family: var(--mtnRegular);
  gap: 8px;
  color: var(--textColor);
}

.social-media-login {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.social {
  border: 1px solid var(--grayColor);
  display: flex;
  width: 48%;
  align-items: center;
  border-radius: 10px;
  padding: 5px 10px;
  gap: 8px;
}

.social img {
  width: 40px;
}

.social .facebook {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-left: 4px;
}

.social p {
  font-family: 'Proxima Nova Regular';
  color: var(--textColor);
  font-size: 18px;
}

.social:hover {
  cursor: pointer;
}

.login-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-divider div {
  width: 45%;
  height: 1px;
  background-color: var(--grayColor);
}

.login-divider p {
  font-family: 'MTN Brighter Sans Regular';
  color: var(--textColor);
}

.login-form {
  margin-top: 40px;
}

.form-field label {
  font-family: var(--mtnRegular);
  font-size: 20px;
  color: var(--textColor);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 30px 0;
}

.form-field label span {
  color: var(--redColor);
}

.form-input {
  background-color: transparent;
  border: 1px solid var(--grayColor);
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  border-radius: 5px;
  padding: 0px 10px;
}

.form-input input {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: 'Proxima Nova Regular';
  font-size: 15px;
}

.long-form-input {
  height: 153px;
  align-items: start;
  padding: 10px;
}

.form-input textarea {
  width: 100%;
  height: 100%;
  resize: none;
  background-color: transparent;
  border: none;
  font-family: 'Proxima Nova Regular';
  font-size: 15px;
}

.bussiness-address {
  display: flex;
  gap: 10px;
}

.form-input textarea:focus {
  outline: none;
}

.form-input input:focus {
  outline: none;
}

.form-input svg {
  margin-right: 5px;
}

.form-input select {
  border: none;
  background-color: transparent;
  margin-right: 5px;
  color: var(--grayColor);
}

.form-input select:focus {
  outline: none;
}

.remind-forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Proxima Nova Regular';
  color: var(--textColor);
}

.remind-me {
  display: flex;
  gap: 5px;
}

.forgot-password a {
  text-decoration: none;
  color: var(--redColor);
}

.registration-btn {
  margin-top: 45px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 4px;
  font-family: 'MTN Brighter Sans Bold';
  color: var(--whiteColor);
  background-color: var(--blueColor);
  font-size: 20px;
}

.registration-btn:hover {
  cursor: pointer;
}

.sign-up-text {
  margin-top: 30px;
  text-align: center;
  font-family: 'MTN Brighter Sans Regular';
  color: var(--textColor);
}

.sign-up-text span a {
  text-decoration: none;
  color: var(--blueColor);
  font-family: 'MTN Brighter Sans Bold';
}

.social-media-login-mobile,
.login-divider-mobile {
  display: none;
}

.signup-left-side {
  left: 0;
}

.signup-right-side {
  right: 0;
}

.signup-right-image {
  width: 90%;
  height: 95%;
  border-radius: 20px;
  background-image: url('../../assets/images/signup.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-signup1-image {
  background-image: url('../../assets/images/girl-with-tablet.png');
}

.vendor-signup2-image {
  background-image: url('../../assets/images/boy-smiling.png');
}

.left-side-text-wrapper {
  width: 80%;
  height: fit-content;
  background: transparent;
  backdrop-filter: blur(6px);
  border: 1px solid var(--whiteColor);
}

.left-side-text-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px;
}

.stars-wrapper img {
  width: 60px;
}

.text-content {
  font-size: 55px;
  font-family: 'MTN Brighter Sans Bold';
  color: var(--whiteColor);
}

.text-content p span {
  background-image: var(--blueLinearGradientColor);
  color: transparent;
  background-clip: text;
}

.background-gradient {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: top;
  justify-content: center;
}

.gradient {
  width: 25%;
  height: 30%;
}

.top-gradient {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(225deg, #05CDFF 50%, transparent 0%);
  filter: blur(120px) saturate(1.1) brightness(1.1);
}

.bottom-gradient {
  position: fixed;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #05CDFF 50%, transparent 0%);
  filter: blur(120px) saturate(1.1) brightness(1.1);
}

.forget-password-content {
  width: 30%;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: start;
  flex-direction: column;
  padding: 50px 0;
}

.admin-login img {
  margin: 0 auto;
}

.key-wrapper {
  padding: 10px;
  height: fit-content;
  width: fit-content;
  border-radius: 50%;
  background-color: #FFCC0020;
  margin: 0 auto;
}

.inner-key-wrapper {  
  padding: 10px;
  border-radius: 50%;
  background-color: #FFCC0030;
}

.page-title {
  color: var(--textColor);
  font-family: 'Proxima Nova Semibold';
  font-size: 35px;
  margin: 40px 0 20px 0;
  text-align: center;
}

.page-subtitle {
  color: var(--grayColor);
  font-family: 'Proxima Nova Regular';
  font-size: 18px;
  text-align: center;
}

.forget-pass-form {
  margin-top: 25px;
}

.forget-pass-btn {
  margin-top: 15px;
}

.forget-back-btn {
  display: flex;
  justify-content: center;
}

.forget-back-btn span a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.otp-form-field {
  display: flex;
  gap: 15px;
}

.otp-form-field .form-input {
  padding: 0;
  height: 70px;
  width: 50px;
}

.otp-form-field .form-input input {
  background-color: var(--whiteColor);
  border-radius: inherit;
  height: 100%;
  width: 100%;
  font-size: 40px;
  text-align: center;
  font-family: 'Proxima Nova Regular';
  color: var(--blueColor);
}

.otp-form-field .form-input input:focus,
.otp-form-field .form-input input:active {
  outline: 1px solid var(--blueColor);
}

.register-btns {
  display: flex;
  gap: 15px;
}

.registration-btn-outline {
  background-color: var(--whiteColor);
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
}

@media (max-width: 1240px) {
  .text-content {
    font-size: 40px;
  }
}

@media (max-width: 1000px) {
  .text-content {
    font-size: 30px;
  }
}

@media (max-width: 885px) {
  .forget-password-content {
    width: 50%;
  }
}

@media (max-width: 850px) {
  .login-right-side {
    padding: 40px 20px 40px 0;
  }

  .signup-left-side {
    padding: 40px 0px 40px 20px;
  }
}

@media (max-width: 700px) {
  .login-left-side {
    display: none;
  }

  .login-right-side {
    width: 100%;
    padding: 40px 20px;
  }

  .social-media-desktop,
  .login-divider-desktop {
    display: none;
  }

  .social-media-login-mobile,
  .login-divider-mobile {
    display: flex;
  }

  .login-divider-mobile {
    margin-top: 40px;
  }

  .social-media-login-mobile {
    margin-bottom: 10px;
  }

  .logo {
    text-align: center;
  }

  .greetings {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .forget-password-content {
    width: 90%;
  }
}

@media (max-width: 400px) {
  .social-media-login-mobile {
    justify-content: center;
    gap: 20px;
  }

  .social-media-login-mobile .social {
    width: fit-content;
  }

  .social-media-login-mobile .social p {
    display: none;
  }
}