#overlay {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #282c3f;
  opacity: 0.7;
  overflow: hidden;
  display: none;
}
#signupDiv,
#loginDiv {
  padding-left: 40px;
  padding-right: 123px;
  padding-top: 30px;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: scroll;
  background: #fff;
  transition: transform 0.3s ease-out;
  z-index: 10001;
}
#closeBtnForSignup,
#closeBtnForLogin {
  color: #535665;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}
#signupDiv > div,
#loginDiv > div {
  width: 362px;
  height: 130px;
  position: relative;
  padding-top: 30px;
  margin-bottom: 69px;
  z-index: 1;
  font-weight: 300;
}
#closeBtnForSignup:hover,
#closeBtnForLogin:hover {
  color: #fc8019;
}
.signLogHead {
  margin-top: 25px;
  font-size: 30px;
  font-weight: 500;
  color: #282c3f;
}
.signLogPara {
  margin-top: 10px;
  position: relative;
  font-weight: 300;
  color: #282c3f;
  font-size: 14px;
}
.signLogPara::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 30px;
  border: 0.5px solid #000;
}
.signLogImg {
  position: absolute;
  top: 58px;
  right: 0;
  z-index: -1;
}
.signLogPara > a {
  text-decoration: none;
  color: #fc8019;
}

/* form */

#userSignupForm,
#userLoginForm {
  display: flex;
  flex-direction: column;
  gap: 21px;
  justify-content: center;
  width: 360px;
  margin: auto;
  margin-top: -15px;
  margin-bottom: 35px;
  padding: 5px;
  padding-left: 0;
  padding-right: 10px;
}

.form {
  position: relative;
  width: 320px;
  height: 55px;
  padding: 0;
}
.form__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #d4d5d9;
  outline: none;
  color: #282c3f;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 20px 22px 0px;
  background: none;
  font-size: 17px;
  font-weight: 500;
}

.form__label {
  position: absolute;
  left: 1rem;
  top: 53%;
  padding: 0 0.5rem;
  color: gray;
  font-weight: 500;
  cursor: text;
  transition: top 200ms ease-in, left 200ms ease-in, font-size 200ms ease-in;
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus) ~ .form__label {
  top: 1rem;
  font-size: 0.8rem;
  left: 0.8rem;
}

#referralLine {
  margin-top: 30px;
  text-decoration: none;
  font-weight: 500;
  color: #5d8ed5;
  font-size: 1rem;
  cursor: pointer;
}

.submitBtn {
  font-size: 15px;
  width: 366px;
  padding: 15px;
  padding-left: 22px;
  padding-right: 22px;
  background-color: #fc8019;
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%);
}
.submitBtn:hover {
  cursor: pointer;
}
.termConditionLine {
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  color: #686b78;
}
#make2InputInSingleRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#validCard {
  width: 170px;
}
#cvvCard {
  width: 105px;
  margin-right: 40px;
}
#goToLoginBox,
#goToSignupBox {
  cursor: pointer;
}

