@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;
  padding: 20px;
}

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

.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: 20px;
  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;
}
.input_fields_bank {
  font-size: 16px !important;
}
.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;
  font-size: 16px !important;
}

.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 .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 {
  width: 100% !important;
}

.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;
}


.bank_details{
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  padding: 10px 10px;
  margin: 5px 0;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
  position: relative;
  margin-right: 8px;
}


.radio-card {
display: flex;
width: 48%;
padding: 21px 20px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
border-radius: 12px;
background: #FFF;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.03);
height: 124px;
border-radius: 12px;
border: 1px solid rgba(226, 224, 224, 0.57);
background: #FFF;
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.03);
}


/* Selected state */
.radio-card:hover, .radio-card input:checked + .content-option {
  border-color: #30B876;
}

.radio-card:has(input[type="radio"]:checked) {
  border:solid 1px #30B876 !important;
  background: #2a905f12;
}

/* Disabled state */
.radio-card:has(input[type="radio"]:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #F5F5F5;
  border-color: #E0E0E0 !important;
}

.radio-card:has(input[type="radio"]:disabled):hover {
  border-color: #E0E0E0 !important;
}


.content-option {
  display: flex;
;
  flex-direction: row;
}
/* Hidden radio input */
.radio-card input {
  display: none;
}

/* Icon */
.icon {
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
}

.payment-checkbox[type="checkbox"]:disabled {
    background: #dddddd;
}

.text-content {
  display: flex
;
  flex-direction: column;
  margin-top: 25px;
  text-align: left;
}



.text-content .title {
color: var(--Primary-Black-500---Main, #070707);
font-family: Outfit;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 121.739% */
letter-spacing: -0.3px;
text-transform: capitalize;
margin: initial !important;
}

.text-content .description {
color: #8E8F94;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 21px; /* 131.25% */
}

/* Checkmark */
/* .checkmark {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: absolute;
  right: 10px;
  top: 27px;
} */

.radio-card input:checked + .content-option .checkmark {
  background-color: #30B876;
  border-color: #30B876;
}

/* .radio-card input:checked + .content-option .checkmark::before {
   content: '✓';
  color: #fff;
  font-size: 14px; 
} */


p.Card_Name {
  font-size: 20px;
  font-family: 'Outfit';
  padding: initial;
  margin: initial;
}

.content-option img {
width: 82px !important;
height: 82px !important;
flex-shrink: 0;
fill: var(--Grey-200, #F5F5F5);
  margin: initial !important;
  padding: initial !important;
}

p.txt_step_2 {
  font-size: 20px;
  font-family: 'Outfit';
  padding: initial;
  margin: initial;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 10px;
  color:#404040
}


.text-content {
  margin-left: 10px;
  margin-top: 10px;
}

span.amount_fees {
  color: rgba(142, 143, 148, 1);
  margin-right: 20px;
}

span.time{
  color: rgba(142, 143, 148, 1);
  margin-right: 20px;
}

div button#show_bank ,div button#redirect_invoice{
    padding: 10px 20px;
    width: 200px;
    min-width: max-content;
    height: 44px;
    border-radius: 8px !important;
    font-size: 18px !important; 
}

button#confirm_card {
    padding: 14px 0;
    width: 274px;
    height: 60px;
    border-radius: 10px !important;
    font-size: 22px !important;  
}

hr.line {
  color: red;
  border: solid 1px #c4c4c4;
  width: 100%;
  margin: auto;
  margin-top: 13px;
}




#back{
  border: solid 1px #CCCCCC !important;
  font-size: 18px;
  border-radius: 8px !important;
  padding: 10px 20px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  text-align: center !important;
  background: initial;
  width: 200px;
  height: 44px;
}


#copy-reference {
  white-space: nowrap;
}

.alert-info {
  background-color: #e9f7ff;
  border-color: #bce0fd;
  color: #31708f;
}

.card-body ul {
  padding: 20px;
  margin: 0 0 0px 0;
  font-size: 16px !important;
}

.cuation {
  display: flex
;
  flex-direction: column;
  padding: 0 30px;
  background: rgba(243, 243, 243, 1);
}

.card-body ul li {
  list-style: disc;
  list-style-type: revert-layer;
  font-family: 'Outfit';
}

.alert_ {
  color: rgba(73, 79, 107, 1);
  font-family: 'Outfit';
  font-weight: 300;
  font-size: 16px !important;
}

.alert_ img {
  padding-right: 10px;
  display: inline-block;
}

.bank_data {
  position: relative;
  margin-left: 10px;
  margin-top: 5px !important;
  font-size: 16px !important;
}

p#temp_msg {
    position: absolute;
    right: 16px;
    top: 10px;
    background: #30B87614 !important;
    border-radius: 20px;
    padding: 5px 20px !important;
    display: block;
    color: #185B63 !important;
}

.bank-detail-temp-msg {
    position: absolute;
    right: 20px;
    top: 16px;
    background: #30B87614 !important;
    border-radius: 20px;
    padding: 5px 20px !important;
    color: #185B63 !important;
    font-size: 14px;
    z-index: 10;
}
.temp_msg {
  font-size: 16px !important;
}

.bank_details_card img {
  width: 6%;
}


.bank_details_card {
  width: 100%;
  display: flex
;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: center;
  position: relative;
  border: solid 1px rgba(209, 214, 224, 1);
  padding: 14px;
  border-radius: 20px;
  margin: 10px 0;
}

button#copy-reference {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

a#copy-reference img {
  width: 40px;
}

a#copy-reference {
  position: absolute;
  bottom: 0;
  right: 10px;
}

table#invoices-table {
  text-align: center;
}


/*Checkbox payment*/
.payment-checkbox[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(190, 190, 190, 1);
  border-radius: 4px;
  display: grid;
  place-content: center;
  cursor: pointer;
}

.payment-checkbox[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #30B876; /* fill only */
  /* remove this to avoid a second border */
  /* border: 2px solid #30B876; */
  border-radius: 2px;
}

.payment-checkbox[type="checkbox"]:checked {
  border-color: #30B876; /* outer border turns green */
}

.payment-checkbox[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* Bank Details Grid */
.bank-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 20px 0;
  margin-bottom: 40px;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E0E0;
}

.bank-detail-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-bottom: 1px solid #E2E0E0;
  border-right: 1px solid #E2E0E0;
  position: relative;
}

.bank-detail-item:nth-child(2n) {
  border-right: none;
}

.bank-detail-item:last-child,
.bank-detail-item:nth-last-child(2) {
  border-bottom: none;
}

.bank-detail-item label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #8E8F94;
  margin-bottom: 8px;
  line-height: 1.4;
}

.bank-detail-value-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bank-detail-value {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  flex: 1;
  word-break: break-word;
}

.bank-detail-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.bank-detail-copy-btn img {
  width: 100%;
  height: 100%;
  display: block;

}

.bank-detail-copy-btn:hover {
  opacity: 0.7;
}

.bank-detail-copy-btn:active {
  opacity: 0.5;
}



/* Responsive Design */
@media (max-width: 768px) {
  .bank-details-grid {
    grid-template-columns: 1fr;
  }
  
  .bank-detail-item {
    border-right: none;
  }
  
  .bank-detail-item:nth-child(2n) {
    border-right: none;
  }
  
  .bank-detail-item:not(:last-child) {
    border-bottom: 1px solid #E2E0E0;
  }
}

@media (max-width: 480px) {
  .bank-detail-item {
    padding: 14px 16px;
  }
  
  .bank-detail-item label {
    font-size: 13px;
  }
  
  .bank-detail-value {
    font-size: 14px;
  }
  
  .bank-detail-copy-btn img {
    width: 25px;
    height: 25px;
  }
}