@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --primary: #30b876;
  --gray: #b6b6b6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
}
.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.formbold-form-wrapper {
  margin: 0 auto;
  width: 100%;
}

.otp-field-box.mb-4 input {
  font-size: 30px;
  width: 60px;
  border-radius: 20px;
  height: 60px;
}

.formbold-input-flex h1 {
  font-family: "Outfit";
}

p.sub_txt {
  font-family: "Outfit";
  color: #7f7f7f;
}
input#clo-email {
  background: white !important;
  font-family: "Outfit";
  font-size: 19px;
  padding: 9px;
  border-radius: 10px;
}
.talent-img {
  width: 100%;
}

.form_label {
  width: 100%;
  font-size: 14px;
  color: #757575;
  text-align: left;
  font-family: "Outfit", serif;
  font-weight: 400;
  font-style: normal;
  margin: 8px 0px;
}

span#clo-display-email {
  display: none;
}

h3.otp-txt {
  text-align: center;
  font-family: "Outfit", serif;
  font-weight: 500;
  font-style: normal;
}

.otp-sub-txt {
  text-align: center;
  font-family: "Outfit", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--gray);
}

/* OTP Field */
.input-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.input-basic-info {
  width: 100%;
  font-size: 16px;
  text-align: left;
  border: 1px solid #ffffff;
  border-radius: 5px;
  outline: none;
  font-family: "Outfit", serif;
}

.input-field:focus {
  border-color: #007bff;
}

.input-field::-webkit-outer-spin-button,
.input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-field[type="number"] {
  -moz-appearance: textfield;
}
/* OTP Field End */

/*Basic Info*/
.input-field {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
}

.confirm-aggrement {
  opacity: 0;
  position: absolute;
  z-index: 1; /* Keep it above the custom checkbox */
  width: 20px;
  height: 20px;
  margin: 0;
}

/* Style the custom checkbox */
.agrement-line {
  position: relative;
  display: flex;
  align-items: center;
}

.agrement-line .text {
  position: relative;
  padding-left: 0px; /* Space for the custom checkbox */
}

.agrement-line .text::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #30b876; /* Border color */
  background-color: white; /* Default background */
  border-radius: 3px; /* Rounded corners */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Change background color when the checkbox is checked */
.confirm-aggrement:checked + .text::before {
  background-color: #30b876; /* Background color for checked state */
  border-color: #30b876; /* Optional: Keep border consistent */
}

/* Optional: Add a checkmark for checked state */
.confirm-aggrement:checked + .text::after {
  content: "✓";
  color: white;
  font-size: 14px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

p.agrement-line .text {
  display: inline-block;
  padding-left: 25px;
}

p.agrement-line {
  margin: 10px 0px;
}

.form-otp input {
  width: 100%;
  padding: 10px !important;
  border-radius: 10px;
  background: #f1f1f1;
  border: solid 1px #efefef;
  height: 52px;
}

.formbold-steps {
  padding-bottom: 18px;
  margin-bottom: 35px;
  border-bottom: 1px solid #dde3ec;
}
.formbold-steps ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
}
.formbold-steps li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  flex-direction: column;
}
.formbold-steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dde3ec;
  width: 190px;
  height: 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  border-radius: 12px;
}
.formbold-steps li.active {
  color: #07074d;
}

.formbold-steps li.active span {
  background: var(--primary);
  color: #ffffff;
  border-radius: 12px;
}

.formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}
.formbold-input-flex > div {
  width: 100%;
}
.formbold-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #536387;
  outline: none;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}
.formbold-form-label {
  color: #07074d;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.formbold-form-confirm {
  border-bottom: 1px solid #dde3ec;
  padding-bottom: 35px;
}
.formbold-form-confirm p {
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  margin-bottom: 22px;
  width: 75%;
}
.formbold-form-confirm > div {
  display: flex;
  gap: 15px;
}

.formbold-confirm-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 0.5px solid #dde3ec;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}
.formbold-confirm-btn {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}
.formbold-confirm-btn.active {
  background: #6a64f1;
  color: #ffffff;
}

.formbold-form-step-1,
.formbold-form-step-2,
.formbold-form-step-3 {
  display: none;
}
.formbold-form-step-1.active,
.formbold-form-step-2.active,
.formbold-form-step-3.active {
  display: block;
}

.formbold-form-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-top: 25px;
}

.formbold-back-btn {
  cursor: pointer;
  background: #ffffff;
  border: none;
  color: #07074d;
  font-weight: 500;
  font-size: 16px;
  display: none;
}
.formbold-back-btn.active {
  display: block;
  border: solid 1px #000000 !important;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  width: 50%;
  text-align: center !important;
}

button#send_email {
  background: #30b876;
  font-size: 20px;
  padding: 15px;
  border-radius: 11px;
  color: white;
  font-family: outfit;
  width: 100%;
}

.formbold-btn {
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 25px;
  border: solid 1px var(--primary);
  font-weight: 500;
  background-color: var(--primary);
  color: white;
  cursor: pointer;
  width: 50%;
  text-align: center !important;
}

.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.disabled {
  display: none;
}

span.error_response {
  color: red;
  text-align: center;
  padding: initial;
  margin: initial;
  position: absolute;
  top: 70px;
  right: 0;
}

/* Sign in with Google Start */
.sign-in-with-google-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.signin_with-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.signin_with-separator-line {
  width: 100%;
  height: 1px;
  background-color: #f0f0f0;
}

.signin_with-separator-text {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  min-width: fit-content;
  margin: 0;
  padding-inline: 20px;
}

.signin_with-google-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.signin_with-google-button {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 126px;
  border-radius: 10px;
  border: 1px solid #acacac;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.signin_with-google-button:hover {
  background: #ffffff;
  border: 1px solid #acacac;
}

.error_msg {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}
/* Sign in with Google End */

@media (max-width: 1024px) {
  .signin_with-google-button {
    padding: 10px 80px;
    font-size: 13px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .signin_with-google-button {
    padding: 10px 40px;
    font-size: 13px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .signin_with-google-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}


