body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/login-bg-desktop.png");
  background-size: cover;
  background-position: center;
}

.container {
/*  font-family: "IRANSansX";*/
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
}

label, input {
/*  font-family: "IRANSansX";*/
}

.login-box {
  border: none;
  background: none;
}

.logo {
  background-image: url("../images/logo.svg");
  width: 213px;
  height: 47px;
  margin: auto;
}

.sub-tit {
  line-height: 26px;
  color: #ffffff;
  margin: auto;
  text-align: center;
  margin-top: 5px;
}

.form-holder {
  margin: 25px auto;
  margin-top: 30px;
  max-width: 338px;
}

.form-group label {
  line-height: 26px;
  color: #ffffff;
}

.form-group input {
  box-sizing: border-box;
  background: #ffffff;
  border: 0.5px solid #aeaeb2;
  border-radius: 12px;
}

.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  background: #db0000;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  width: 100%;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff0000;
}

.btn-primary:focus {
  background: #b92525 !important;
}

.g-recaptcha {
  transform: scale(0.82);
  /* transform-origin: 0 0; */
}

.g-recaptcha div {
  text-align: center;
  margin: auto;
}

.validation-error {
  background: none;
  color: #ff0000;
}

.validation-error p {
  color: inherit;
}

.pass-grp {
  position: relative;
}

#password {
  padding-right: 40px;
}

.show-pass {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.cs-box-resize {
  max-width: 427px;
}

@media (max-width: 768px) {
  body {
    background-image: url("../images/login-bg-mobile.png");
  }

  .form-holder {
    max-width: 300px;
}

  .cs-box-resize {
    /* padding: 50px; */
  }
}