.sign-in{
    max-width: 74vw;
    display: flex;
    align-items: center;
}

.sign-up{
    display: flex;
    justify-content: flex-end;
    padding: 0px;
    max-width: 79vw;
}
.login-section{
    margin-top:81px;
   
    display: flex;
    background-size: cover;
    justify-content: center;
    /* align-items: center; */
}
.img-c{
  max-width: 0px;
}
/* modal code */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: -66px;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.40);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding:64px;
  width: 137%;
  display: flex;
  flex-direction: column;
justify-content: center;
align-items: center;
  max-width:701px;
  position: relative;
  border-radius: 20px;
  gap: 32px;
border: 1px solid var(--Outline, #DEE5ED);
box-shadow: 0px 7px 15px 0px rgba(106, 114, 128, 0.05), 0px 25px 80px 0px rgba(106, 114, 128, 0.05), 0px 12px 20px 0px rgba(106, 114, 128, 0.05);
  animation: fadeIn 0.3s ease;
}
.text-modal{
  display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 16px;
align-self: stretch;
}
.text-modal h2{
  color: var(--Navy, #1C1F26);
  text-align: center;
 margin: 0px;
 width: 572px;
  font-family: "DM Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 131.807%; /* 65.903px */
  text-transform: capitalize;
}
.text-modal p{
  color: var(--Grayscale-700, #656565);
text-align: center;
margin: 0px;
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 167%; /* 26.72px */
}
.text-modal input{
  display: flex;
height: 48px;
padding: 16px;
align-items: center;
align-self: stretch;
border-radius: 4px;
border: 1px solid var(--Outline, #DEE5ED);
background: var(--off-white, #F3F3F3);
}
.modal-captcha{
  width: 334px;
height: 83px;
border-radius: 8px;
background: url(<path-to-image>) lightgray -5.252px -2.391px / 105.031% 105.762% no-repeat;
}
.modal-btns{
  display: flex;
align-items: center;
justify-content: center;
gap: 24px;
align-self: stretch;
}
/* Close button */
.close {
  color: var(--Navy, #1C1F26);
text-align: center;
margin: 0px;
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
  display: flex;
height: 49px;
max-width: 275px;
padding: 14px 26px;
justify-content: center;
align-items: center;
gap: 10px;
flex: 1 0 0;
text-decoration: none;
border-radius: 100px;
border: 2px solid var(--Navy, #1C1F26);

}
.conf{
  color: var(--Grayscale-White, #FFF);
text-align: center;
margin: 0px;
max-height: 49px;
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
  display: flex;
padding: 14px 26px;
justify-content: center;
align-items: center;
gap: 10px;
flex: 1 0 0;
  border-radius: 100px;
background: var(--Navy, #1C1F26);

}
.conf:hover{
  border: 2px solid var(--Navy, #1C1F26);
}
.close:hover {
  background: #000;
  color: #FFFFFF;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* modal code */
.login-content{
    background: #FFFFFF;
    display: flex;
    align-items: center;
    flex-direction: column;
    width:530px;
    gap: 24px;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}
.login-content h1{
  color: var(--Navy, #1C1F26);
text-align: center;
font-family: "DM Sans";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: 131.807%; /* 65.903px */
text-transform: capitalize;
margin: 0px;
}
.login-content p{
  color: var(--Grayscale-700, #656565);
text-align: center;
margin: 0px;
/* P/standard */
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 167%; /* 26.72px */
}

.cont-con{
    display: flex;
    flex-direction: column;
gap: 16px;

}
.cont-con input{
    width: 450px;
height: 48px;
border-radius: 4px;
padding: 16px;
border-width: 1px;
background: #F3F3F3;
border: 1px solid #DEE5ED;
}
.remember-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: DM Sans;
font-weight: 400;
font-size: 16px;
line-height: 167%;
letter-spacing: 0%;
vertical-align: middle;

  }

  /* Hide the native checkbox */
  .remember-container input[type="checkbox"] {
    display: none;
  }

  /* Custom round checkbox */
  .custom-round-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
  }

  /* Checkmark styling */
  .custom-round-checkbox::after {
    content: '✓';
    font-size: 14px;
    color: white;
    display: none;
  }

  /* When checked, show checkmark and change background */
  .remember-container input[type="checkbox"]:checked + .custom-round-checkbox {
    background-color: #007BFF;
    border-color: #007BFF;
  }

  .remember-container input[type="checkbox"]:checked + .custom-round-checkbox::after {
    display: block;
  }

  .btn-black{
    width: 438px;
height: 49px;
gap: 10px;
padding-top: 14px;
padding-right: 26px;
padding-bottom: 14px;
padding-left: 26px;
border-radius: 100px;
background: #1C1F26;
font-family: DM Sans;
font-weight: 500;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
color: #F3F3F3;
  }

  .forgotp{
    font-family: DM Sans;
font-weight: 500;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
color: #397BFC;
text-decoration: none;
  }
.red-line{
  width: 450px;
height: 1px;
opacity: 0.5;
background: #C30000;
margin: 0px;
}
.desc{
  color: var(--Grayscale-700, #656565);
text-align: center;
font-family: "DM Sans";
font-size: 16px;
margin: 0px;
font-style: normal;
font-weight: 400;
line-height: 167%; 
}

/* faq page  */
.Faq-page{
  background-color: var(--off-white, #F3F3F3);
  background-image: url(../images/faq-BG.png);
  background-repeat: no-repeat;
  background-size: cover;  
  background-position: center;
}
.faq-c{
  display: flex;
  padding: 120px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 58px;
}
.faq-c h1{
  color: var(--Navy, #1C1F26);
text-align: center;

/* Headings/H2 */
font-family: "DM Sans";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: 131.807%; /* 65.903px */
text-transform: capitalize;
}
.faq-container {
  display: flex;
  width: 949px;
  flex-direction: column;
  align-items: flex-start;
  gap:16px;
}

.faq-item {
padding: 24px;
display: flex;
    flex-direction: column;
    gap: 24px;
justify-content: space-between;
align-items: center;
align-self: stretch;
border-radius: 20px;
border: 1px solid #DEE5ED;
background: #F8F8F8;
}
.faq-item.active {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1.5px solid #83AFE2;
  background: var(--Grayscale-White, #FFF);
  box-shadow: 0px 0px 0px 2px rgba(182, 196, 213, 0.25), 0px 7px 15px 0px rgba(106, 114, 128, 0.05), 0px 25px 80px 0px rgba(106, 114, 128, 0.05), 0px 12px 20px 0px rgba(106, 114, 128, 0.05);
  background-color: white; /* Active background */
}
.faq-question {
  
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.faq-answer {
  display: none;
  color: var(--Grayscale-700, #656565);
font-family: "DM Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 167%; 

}

.faq-question span{
  color: var(--Navy, #1C1F26);
font-family: "DM Sans";
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}

.faq-answer.active{
  display: block;
  display: flex;
  padding:0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
 
}

.icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.icon.minus {
  transform: rotate(180deg);
}
/* faq page  */



.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
 
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.circle-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .circle-checkbox::after {
  content: '✔';
  font-family: auto;
  color: white;
  font-size: 14px;
}

.checkbox-wrapper input[type="checkbox"]:checked + .circle-checkbox {
  background-color: #007BFF;
  border-color: #007BFF;
}

.checkbox-label {
  font-family: DM Sans;
font-weight: 400;
font-size: 16px;
line-height: 167%;
letter-spacing: 0%;
vertical-align: middle;
color: #656565;
   max-width: 410px; 
    text-align: left;
}

.checkbox-label a {
  font-family: DM Sans;
font-weight: 400;
font-size: 16px;
line-height: 167%;
letter-spacing: 0%;
vertical-align: middle;
color: #397BFC;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}
.re-captcha{
  max-width: 334;
height: 83;
border-radius: 8px;

}




.thankyou-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.thankyou-modal-box {
  background: #fff;
  max-width:571px;
  width: 90%;
  display: flex; 
   flex-direction: column;
  text-align: center;
  border: 1px solid #DEE5ED;
  animation: fadeIn 0.3s ease-in-out;
border-radius: 20px;
padding: 64px;
gap: 32px;
border-width: 1px;

}

.thankyou-modal-box h2 {
  font-family: DM Sans;
font-weight: 600;
font-size: 50px;
line-height: 132%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
margin: 0px;
color: #1C1F26;
}

.thankyou-modal-box p {
  color: #656565;
  font-family: DM Sans;
font-weight: 400;
font-size: 16px;
line-height: 167%;
letter-spacing: 0%;
text-align: center;
margin: 0px;
}

.thankyou-modal-box button {
  width: 431;
height: 49;
border-radius: 100px;
gap: 10px;
padding-top: 14px;
padding-right: 26px;
padding-bottom: 14px;
padding-left: 26px;
background: #1C1F26;
box-shadow: 0px 0px 0px 2px #181719;
color: #FFFFFF;
box-shadow: 0px 1px 2px 0px #77777780;
font-family: DM Sans;
font-weight: 500;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


















/* responsive code  */

@media only screen and (max-device-width: 700px) {
    .sign-up{
        max-width: 100vw;
    justify-content: center;
    }
  .login-section{
      height:auto;
    margin-top:86px;
    flex-direction: column;
    padding: 0px;
}
.mobile-img{
 
  width: 375px;
  height: 375px;
}
.login-content{
  display: flex;
  width:100vw;
  align-items: center;
padding: 40px 24px;
flex-direction: column;
align-items: center;
  border-radius: 0px;
  gap:24px;
  align-self: stretch;
}
.cont-con input{
  display: flex;
height: 48px;
width: 327px;
padding: 16px;
align-items: center;
align-self: stretch;
}
.connn{
  display: flex;
  flex-direction: column;
}
.lcon{
  padding: 0px;
}
.btn-black{
  width: 315px;
  display: flex;
padding: 14px 26px;
justify-content: center;
align-items: center;
gap: 10px;
flex: 1 0 0;
}
.red-line{
  width: 327px;
}
.login-content h1{
font-size:32px;
}
.modal-content {
  display: flex;
width: 350px;
padding: 24px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 24px;
border-radius: 10px;
background: var(--Grayscale-White, #FFF);
position: absolute;
left: 12px;
top: 500px;
box-shadow: 0px 7px 15px 0px rgba(106, 114, 128, 0.05), 0px 25px 80px 0px rgba(106, 114, 128, 0.05), 0px 12px 20px 0px rgba(106, 114, 128, 0.05);
}
.text-modal h2{
  font-size: 32px;
  width: 327px;
}
.close,.conf,.modal-captcha{
  width: 290px;
}
.modal-btns{
  flex-direction: column;
}
.checkbox-label{
  width: 280px;
}




  .faq-question {
    font-size: 0.95rem;
    padding: 0px;
  }
  .faq-container{
    width: 327px;
    
  }
  .faq-answer {
    font-size: 0.9rem;
    padding: 0 12px 12px;
  }
  .Faq-page{
    padding:0px;
    margin-top: 84px;
  }
  .faq-c{
      padding:40px 0px;
    gap: 40px;
  }
  .faq-c h1 {
    color: var(--Navy, #1C1F26);
text-align: center;
font-family: "DM Sans";
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 133.807%; /* 42.818px */
text-transform: capitalize;
  }

  .icon {
    width:24px;
    height: 24px;
  }
}
@media only screen and (max-device-width: 700px) {
    .mobile-img {
         width:100vw; 
         height:auto;
       
    }
    .sign-in {
    max-width: 100vw;
        
    }
}

@media only screen and (min-device-width: 1200px) and (max-device-width: 1348px) {
   
}

@media only screen and (min-device-width: 1349px) and (max-device-width: 1439px) {

} 

@media only screen and (min-device-width: 1440px) and (max-device-width: 1499px) {

}

@media only screen and (min-device-width: 1500px) and (max-device-width: 1599px) {

}

@media only screen and (min-device-width: 1600px) and (max-device-width: 1699px) {
    
}

@media only screen and (min-device-width: 1700px) and (max-device-width: 1799px) {
    
}

@media only screen and (min-device-width: 1800px) and (max-device-width: 1919px) {

}

@media only screen and (min-device-width: 1920px) {
   .login-section{
         height:41vw; 
   }
}



@media only screen and (min-device-width:2000px) and (max-device-width:10000px) {
   .login-section{
         height:100vh; 
   }
   .Faq-page {
       height:100vh;
   }
}