.allSections {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enterImg {
  width: 50%;
  height: 100vh;
  border-radius: 20px;
  padding: 10px;
  box-sizing: border-box;
}
.leftColumn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  gap: 30px;
  margin: 0 auto;
}
.leftColumn.loginLeftColumn {
  gap: 20px;
}
.descBox {
  display: block;
  font-size: 21pt;
  font-weight: bold;
}
.descBox.descTitle {
  font-size: 18pt;
  margin-bottom: 10px;
}
.btnLogin {
  padding: 8px 0;
  text-align: center;
  width: 50%;
}
.label {
  display: block;
  margin: 0 10px 10px 0;
}
.input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--deactive);
}
input:focus {
  outline: none;
}
.btn {
  background-color: var(--success);
  color: var(--textLight);
}
.btn.submitBtn {
  margin-top: 30px;
}

/*region single css for login page*/
.enterBox {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
}
.btnCss {
  border: 1px solid var(--success);
  border-radius: 6px;
  background: var(--successHint);
  border: 1px solid var(--success);
  color: var(--success);
}
/*#endregion single css for login page*/

/*region single css for register page*/
.subTitle {
  font-size: 14pt;
  font-weight: 500;
}
/*#endregion single css for register page*/

/*region single css for pass page*/
.enterBtn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.forgotPass {
  font-size: 10pt;
  font-weight: 500;
  margin: 10px 10px 0 0;
  display: block;
}
.subInput.return {
  font-size: 10pt;
  text-align: left;
}
/*#endregion single css for pass page*/

/*region single css for confirm-code page*/
.input.telInp {
  width: 13%;
  text-align: center;
}
.inputCodeBox {
  display: flex;
  justify-content: space-between;
  direction: ltr;
}
.editIcon {
  text-align: center;
}
.editIcon::after {
  content: "";
  background-image: url(../Icon/editIcon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 6px;
}
.subInput {
  display: block;
  font-size: 10pt;
  font-weight: 600;
  color: var(--success);
  margin-top: 15px;
  text-align: center;
}
/*#endregion single css for confirm-code page*/

@media screen and (min-width: 675px) and (max-width: 1180px) {
  .descBox {
    font-size: 16pt;
  }
  .subTitle {
    font-size: 12pt;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .leftColumn {
    width: 45%;
  }
  .descBox {
    font-size: 14pt;
  }
  .btnLogin {
    font-size: 10pt;
  }
  .enterBtn .btnCss {
    font-size: 10pt;
  }
}
@media screen and (min-width: 601px) and (max-width: 675px) {
  .descBox {
    font-size: 15pt;
  }
  .subTitle {
    font-size: 11pt;
  }
}
@media screen and (min-width: 0) and (max-width: 600px) {
  .allSections {
    flex-direction: column;
  }
  .mainTitle {
    text-align: center;
  }
  .descBox {
    font-size: 16pt;
  }
  .subTitle {
    font-size: 14pt;
    font-weight: 400;
  }
  .enterImg {
    width: 100%;
    height: 40vh;
    border-radius: unset;
    object-fit: cover;
    padding: unset;
  }
  .leftColumn {
    margin-top: -30px;
    border-radius: 16px;
    width: 100%;
    padding: 40px;
    background-color: var(--body);
  }
  .enterBtn .btnCss {
    font-size: 10pt;
  }
}
