@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Padauk:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans";
}

.signup-overlay-main-modal {
  position: fixed;
  top: 0px;
  background-color: rgba(7, 7, 7, 0.425);
  z-index: 1001;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.signup-overlay-main-content {
    background-color: #ffffff;
    max-width: 500px;
    width: 95%;
    border-radius: 8px;
    overflow-y: auto;
}

.close-modal {
  position: absolute;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  max-width: 500px;
  width: 95%;
  display: flex;
    justify-content: flex-end;
    padding: 20px;
}
.close-modal>img{
    width: 18px;
    height: 18px;
}
.overlay-heading{
    font-size: 26px;
    font-weight: 600;
    color: #A10404;
    background-image: url("../assets/login/Rectangle\ 398.svg");
    padding: 30px 20px;
    background-color: #a1040415;
    display: flex;
    justify-content: center;
}
.overlay-contents{
    padding:20px 70px;
}
.main-form-overlay{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.overlay-form-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.overlay-form-group label{
    font-size: 14px;
    font-weight: 500;
    color: #3F3F3F;
}
.overlay-form-group input{
    padding: 10px;
    border: 1px solid #DEE1E6;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}
.overlay-button-group{
    padding-top: 15px;
}
.overlay-button-group>button{
    background-color: #A10404;
    width: 100%;
    color: white;
    border: none;
    box-shadow: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 0px 1px 0px #171A1F12;
    cursor: pointer;
}
.overlay-or-line{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0px;
}
.overlay-or-line .overlay-line{
    flex: 1;
    border: 0.5px solid #DEE1E6;
}
.overlay-or-line>span{
    font-size: 16px;
    color: #3F3F3F;
}
.signinusinggoogle{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.signingoogle-overlay{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid #DEE1E6;
    padding: 8px 12px;
    border-radius: 5px;
}
.signingoogle-overlay img{
    width: 20px;
    height: 20px;
}
.signinusinggoogle span{
    font-size: 14px;
    color: #716B6B;
}
.resend-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.error-text {
    color: red;
    font-size: 12px;
  }
  .resend {
    color: blue;
    cursor: pointer;
    font-size: 10px;
  }
  .resend.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
  }
  .timer {
    color: green;
    font-size: 10px;
  }
  @media (max-width:595px) {
    .signup-overlay-main-content{
        height: 80vh;
    }
    .overlay-contents{
        padding:20px 20px;
    }
  }