* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  /* height: 100vh; */
  background-image: url("./background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.content {
  height: 580px;
  width: 740px;
  display: flex;
}

.left-section {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: #b5e7ff;
  padding-top: 40px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  position: relative;
}

.left-section p {
  text-align: center;
  color: #0d0830;

  font-feature-settings: "liga" off, "clig" off;
  font-family: Poppins;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 129.63% */
}

.left-section img {
  /* position: absolute; */
  /* bottom: 0; */
  /* max-width: 265px; */
}

#personImg {
  border-bottom-left-radius: 15px;
}

#crossimgMobile {
  height: 0px;
  width: 0px;
}

.right-section {
  flex: 1;
  background-color: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  padding-left: 25px;
  padding-right: 20px;
}

.right-section .lines {
  padding-top: 55px;
  display: flex;
  gap: 5px;
}

.right-section input::placeholder {
  color: var(--Neutral-500, #a0a3bd);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
}

.right-section .first-progress-bar {
  height: 5px;
  width: 180px;
  background-color: #efefef;
  border-radius: 10px;
}

.right-section .second-progress-bar {
  height: 5px;
  width: 180px;
  background-color: #efefef;
  border-radius: 10px;
}

.right-section .filled {
  background-color: #00aeff; /* Blue color when filled */
}

.right-section img {
  position: absolute;
  top: 20px;
  right: 20px;
}

#heading {
  font-size: 27px;
  font-weight: 700;
  color: black;
  margin-top: 10px;
}

.right-section .heading {
  color: #090909;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Poppins;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 129.63% */
}
.right-section p {
  color: var(--Neutral-600, #6f6c90);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 142.105% */
  letter-spacing: 0.285px;
}

#description {
  margin: 10px 0;
}

.form-control {
  width: 100%;
  outline: none;
  padding: 20px;
  border-radius: 35px;
  color: black !important;

  border: #eff0f6;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

#_form_15_submit {
  background-color: #fe5545;
  padding: 20px;
  width: 100%;
  border-radius: 35px;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700px;
}

.rc-anchor {
  border: 1px solid #00aeff !important;
  position: relative;
  background-color: pink !important;
}
.checkboxElement {
  display: flex;
  align-items: center;
  gap: 10px;
}
._error-inner {
  font-size: 12px;
  color: red;
  margin: 5px;
  padding-left: 10px;
}
#labelInput {
  color: var(--Neutral-500, #a0a3bd);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
}
.captcha {
  background-color: #00aeff;
  height: 52px;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

#captcha-image {
  position: absolute;
  top: 10px;
  left: 5px;
}
.input-check-box {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #a0a3bd;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 10px;
}

.input-check-box:checked {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.input-check-box:checked::after {
  content: "✔";
  color: black;
  font-size: 16px;
  position: absolute;
}

@media (max-width: 600px) {
  .left-section img {
    /* position: absolute; */
    /* bottom: 0; */
    max-width: 265px;
  }

  .container {
    background-image: none;
    background-color: white;
  }

  .content {
    flex-direction: column;
    gap: 10px;
    height: 95vh;
    width: 80%;
  }

  #personImg {
    border-bottom-left-radius: 15px;
  }

  .left-section {
    padding-top: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
  }
  .right-section {
    flex: 1;
    width: 100%;
    padding: 0;
  }

  .right-section .lines {
    padding-top: 15px !important;
    display: flex;
    gap: 5px;
  }

  .left-section p {
    text-align: center;
    color: #0d0830;
    font-feature-settings: "liga" off, "clig" off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 129.63% */
  }

  #heading {
    font-size: 24px;
    margin-top: 12px !important;
  }

  #crossimg {
    height: 0px;
    width: 0px;
  }

  #crossimgMobile {
    position: absolute;
    height: 12px;
    width: 12px;
    top: 15px;
    right: 15px;
  }

  .left-section img {
    border-bottom-left-radius: 0px !important;
  }

  #_form_element {
    margin-top: 0px !important;
  }

  .input-box {
    width: 100%;
    outline: none;
    padding: 15px;
    border-radius: 35px;
    font-size: 10px;
    font-weight: 500px;
    color: black !important;
    border: #eff0f6;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.05);
  }

  .right-section p {
    font-size: 16px;
  }
}
._submit:disabled {
  background-color: gray !important;
}
.loader {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-bottom-color: #ff3d00;
  border-radius: 50%;
  margin-right: 5px;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
