/* Sign Up Modal Container */

.signUpModalContainer {
  display: none;
}

.signUpModal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modalContent.up {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) -30.32%,
    #fefefe 68.81%
  );
  box-shadow: 0px 0px 9px 0px #00000033;
  border-radius: 20px;
  max-width: 476px;
  width: 100%;
  padding: 25px 30px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modalContent::after {
  content: unset;
  background-color: #cde5fa;
  height: 1px;
  max-width: 414px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
}

.modalContent1 p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.modalContent p a {
  color: #025594;
}

.modalContent.up p {
  margin-top: 22px;
}

.modalClose {

  max-width: 27px;
  width: 100%;
  max-height: 27px;
  height: 100%;
  position: relative;
  top: 2px;
  right: -13px;
}

.modalClose:hover,
.modalClose:focus {
  cursor: pointer;
}

.modalContent h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #08080f;
  position: relative;
  max-width: 89px;
  width: 100%;
  margin: 0 auto;
}

/* Sign Up Form */

.signUpForm {
  margin-top: 30px;
}

.nameContainer,
.emailContainer,
.phoneContainer,
.passContainer,
.rePassContainer {
  position: relative;
  margin-bottom: 15px;
}

.signUpForm input {
  max-width: 416px;
  width: 100%;
  min-height: 46px;
  height: 100%;
  border: 1px solid #d6e3f4;
  padding-left: 14px;
  outline: none;
  border-radius: 4px;
}

.signUpForm input:hover {
  border: 1px solid #0271c5;
}

.signUpForm input:focus {
  border: 1px solid #0271c5;
}

.signUpForm .signUpCheckLabel .signUpCheck {
  min-height: unset;
  margin-right: 5px;
  position: relative;
  top: 3px;
  cursor: pointer;
  max-width: 16px;
  width: 100%;
  min-height: 16px;
  height: 100%;
}

.signUpForm label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #64748b;
  padding: 1px 4px;
}

.signUpNameLabel,
.signUpEmailLabel,
.signUpPhoneLabel,
.signUpPassLabel,
.signUpRePassLabel {
  position: absolute;
  top: 12px;
  left: 14px;
}

.signUpForm .signUpCheckLabel {
  line-height: 21px;
  text-align: center;
  color: #08080f;
  display: block;
  margin-top: 20px;
}

.signUpCheckLabel a {
  text-decoration: underline;
  color: #08080f;
}

.signUpForm button {
  background: linear-gradient(180deg, #f07527 0%, #bd5919 100%);
  max-width: 416px;
  width: 100%;
  min-height: 39px;
  height: 100%;
  border-radius: 100px;
  border: none;
  margin-top: 32px;
  cursor: pointer;
}

.signUpForm button span {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.signUpForm button span::after {
  content: "";
  background-image: url(../images/signUpButtonArrow.webp);
  width: 17px;
  height: 17px;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  top: 3px;
}

.error {
  color: #df4d4d;
}

/* Sign In Modal Container */

.signInModalContainer {
  display: none;
}

.signInModal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modalContent.in {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) -30.32%,
    #fefefe 68.81%
  );
  box-shadow: 0px 0px 9px 0px #00000033;
  border-radius: 20px;
  max-width: 476px;
  width: 100%;
  max-height: 586px;
  height: 100%;
  padding: 25px 30px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modalContent.in p {
  margin-top: 15px;
}

/* Sign In Form */

.signInForm {
  margin-top: 30px;
}

.signInForm input {
  max-width: 416px;
  width: 100%;
  min-height: 46px;
  height: 100%;
  border: 1px solid #d6e3f4;
  padding-left: 14px;
  outline: none;
  border-radius: 4px;
}

.signInForm input:hover {
  border: 1px solid #0271c5;
}

.signInForm input:focus {
  border: 1px solid #0271c5;
}

.signInForm .signInCheckLabel .signInCheck {
  min-height: unset;
  margin-right: 5px;
  position: relative;
  top: 3px;
  cursor: pointer;
  max-width: 16px;
  width: 100%;
  max-height: 16px;
  height: 100%;
}

.signInForm label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #64748b;
  padding: 1px 4px;
}

.signInEmailLabel,
.signInPassLabel {
  position: absolute;
  top: 12px;
  left: 14px;
}

.passOptions {
  display: flex;
  justify-content: space-between;
}

.signInForm .signInCheckLabel {
  line-height: 21px;
  color: #08080f;
  display: inline-block;
  max-width: 128px;
  width: 100%;
}

.forgetPass {
  color: #08080f;
  font-size: 14px;
  line-height: 18px;
}

.signInForm button {
  background: linear-gradient(180deg, #f07527 0%, #bd5919 100%);
  max-width: 416px;
  width: 100%;
  min-height: 39px;
  height: 100%;
  border-radius: 100px;
  border: none;
  margin-top: 50px;
  cursor: pointer;
}

.signInForm button span {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.signInForm button span::after {
  content: "";
  background-image: url(../images/signUpButtonArrow.webp);
  width: 17px;
  height: 17px;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  top: 3px;
}

/* Verify Modal Container */

.verifyModalContainer {
  display: none;
}

.verifyModal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modalContent.verify {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) -30.32%,
    #fefefe 68.81%
  );
  box-shadow: 0px 0px 9px 0px #00000033;
  border-radius: 20px;
  max-width: 476px;
  width: 100%;
  max-height: 586px;
  height: 100%;
  padding: 25px 30px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modalContent.verify::after {
  top: 94px;
}

.modalContent.verify p:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #64748b;
  margin-top: 7px;
}

.modalContent.verify h2 {
  max-width: 228px;
  width: 100%;
}

.modalContent.verify .updateInfoBtn {
  text-align: center;
  margin-top: 15px;
}

.modalContent.verify .updateInfoBtn a {
  display: inline-block;
}

.modalContent.verify .updateInfoBtn a span {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  color: #1e293b;
  padding: 7px 8px 8px 7px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 6px;
}

.modalContent.verify .updateInfoBtn a span::after {
  content: "";
  background-image: url(../images/verifyPencil.webp);
  width: 18px;
  height: 17px;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-left: 3px;
}

/* Verify Form */

.verifyForm {
  margin-top: 30px;
}

.modalContent.verify .verifyForm p {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #64748b;
}

.modalContent.verify .verifyForm p span {
  font-weight: 500;
  color: #3f3f3f;
}

.codeContainer {
  display: flex;
  column-gap: 17px;
  justify-content: center;
  margin-top: 20px;
}

.verifyCode {
  max-width: 58px;
  width: 100%;
  min-height: 58px;
  height: 100%;
  text-align: center;
  border: 0.72px solid #dadce0;
  border-radius: 4px;
  outline: none;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  color: #858585;
}

.verifyCode::placeholder {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  color: #858585;
}

.verifyCode:hover {
  border: 1px solid #0271c5;
}

.verifyCode:focus {
  border: 1px solid #0271c5;
}

.verifyForm .sendAgainBtn {
  text-align: center;
  margin-top: 25px;
}

.verifyForm .sendAgainBtn a {
  display: inline-block;
  text-decoration: underline;
  color: #64748b;
  display: none;
}

.verifyForm .sendAgainBtn a span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #64748b;
  padding: 8px 12px 8px 10px;
  border: 1px solid #f3f4f5;
  background-color: #ffffff;
  border-radius: 6px;
}

.verifyForm .sendAgainBtn a span::after {
  content: "";
  background-image: url(../images/verifyReload.webp);
  width: 11px;
  height: 11px;
  display: inline-block;
  position: relative;
  top: 0;
  margin-left: 5px;
}

.verifyForm .sendAgainBtn input {
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  width: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #64748b;
}

.verifyForm button {
  background: linear-gradient(180deg, #f07527 0%, #bd5919 100%);
  max-width: 416px;
  width: 100%;
  min-height: 39px;
  height: 100%;
  border-radius: 100px;
  border: none;
  margin-top: 50px;
  cursor: pointer;
}

.verifyForm button span {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.verifyForm button span::after {
  content: "";
  background-image: url(../images/signUpButtonArrow.webp);
  width: 17px;
  height: 17px;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  top: 3px;
}
