@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 100;
  src: url("../webfonts/woff/IRANYekanX-Thin.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Thin.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 200;
  src: url("../webfonts/woff/IRANYekanX-UltraLight.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-UltraLight.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/woff/IRANYekanX-Light.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Light.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/woff/IRANYekanX-Medium.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Medium.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 600;
  src: url("../webfonts/woff/IRANYekanX-DemiBold.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-DemiBold.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 800;
  src: url("../webfonts/woff/IRANYekanX-ExtraBold.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 900;
  src: url("../webfonts/woff/IRANYekanX-Black.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Black.woff2") format("woff2");
}
@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 950;
  src: url("../webfonts/woff/IRANYekanX-ExtraBlack.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-ExtraBlack.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: 1000;
  src: url("../webfonts/woff/IRANYekanX-Heavy.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Heavy.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: bold;
  src: url("../webfonts/woff/IRANYekanX-Bold.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Bold.woff2") format("woff2");
}

@font-face {
  font-family: IRANYekanX;
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/woff/IRANYekanX-Regular.woff") format("woff"),
    url("../webfonts/woff2/IRANYekanX-Regular.woff2") format("woff2");
}
/* :root {
  --primary-color: #7deb55;
  --primary-color-hover: #82db5c;
  --dark-primary-color: #214523;
  --primary-color2: #2a822f;
  --light-primary-color: #f0faed;
  --gradient-color: rgba(4, 25, 0, 1);
  --text-color: #313131;
  --text-color2: #4c4c4c;
  --light-color: #fff;
  --light-color2: rgba(255, 255, 255, 0.56);
  --border-color: #e6e6e6;
  --icon-background: #62874f45;
  --input-radius: 25px;
  --card-radius: 25px;
  --primary-font-family: IRANYekanX;
} */
:root {
  --primary-color: #b06bff;
  --primary-color-hover: #8d4bda;
  --dark-primary-color: #2f2145;
  --primary-color2: #7925b6;
  --light-primary-color: #f6edff;
  --gradient-color: rgb(13 0 25);
  --text-color: #313131;
  --text-color2: #4c4c4c;
  --light-color: #fff;
  --light-color2: rgba(255, 255, 255, 0.56);
  --border-color: #e6e6e6;
  --icon-background: #886eb845;
  --input-radius: 25px;
  --card-radius: 25px;
  --primary-font-family: IRANYekanX;
} 

* {
  font-family: var(--primary-font-family);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:hover,
*:hover * {
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
body {
  background: var(--light-color);
}
a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-color2);
}
a:hover {
  color: var(--dark-primary-color);
}
img {
  max-width: 100%;
  height: auto;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color2);
}

textarea {
  height: 150px;
}

input,
textarea,
select {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--input-radius);
  color: var(--text-color2);
  padding: 14px;
  font-size: 0.8rem;
  direction: rtl !important;
}
.space-input {
  padding-right: 34px;
}
input[type="submit"] {
  border: none;
}
.logo-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo-a img {
  width: 95px;
  height: auto;
}

.medium-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  color: var(--text-color2);
}
.small-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-color2);
}
.larg-bold-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  color: var(--text-color);
}
.medium-bold-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--text-color);
}
.small-bold-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 26px;
}
.light-color {
  color: var(--light-color) !important;
}
.light-color2 {
  color: var(--light-color2) !important;
}
.primary-color {
  color: var(--primary-color) !important;
}
.card-div {
  background-color: var(--light-color);
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.18);
  text-align: center;
  padding: 32px 120px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: var(--card-radius);
}
.button-style,
.icon-button {
  color: var(--dark-primary-color);
  background: var(--primary-color);
  padding: 0 24px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--input-radius);
  font-size: 0.9rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.icon-button {
  background-color: var(--icon-background);
  padding: 0;
  width: 48px;
  color: var(--light-primary-color);
}
.button-style:hover {
  background-color: var(--primary-color-hover);
}
.icon-button:hover {
  background-color: var(--primary-color2);
  color: var(--light-color);
  scale: 1.2;
}
.social-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.user-type-radio {
  display: none;
}
.copywrite span {
  color: var(--primary-color);
  font-weight: 700;
}
.user-type-text {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-color2);
}
.user-type-radio:checked ~ .user-type-text {
  color: var(--dark-primary-color);
  background-color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
}

.user-type-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--light-primary-color);
  border-radius: var(--input-radius);
  padding: 8px;
  margin: 24px 0;
}
.user-type-div label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.input-icon,
.textarea-icon {
  position: absolute;
  right: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 16px;
  padding-bottom: 4px;
}
.textarea-icon {
  height: auto;
  top: 16px;
}
.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.space-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.line-title {
  position: relative;
  display: -ms-grid;
  display: grid;
  margin-bottom: 16px;
}
.line-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  border-bottom: solid 1px var(--border-color);
  top: 50%;
  z-index: 0;
}
.line-title h2 {
  z-index: 1;
  position: relative;
  background: var(--light-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 12px;
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 0;
}
.app-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.app-div a {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 4px);
  flex: 0 1 calc(50% - 4px);
}
#showPassword {
  position: absolute;
  height: 100%;
  left: 14px;
  top: 0;
  cursor: pointer;
}
#showPasswordIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 16px;
}
#dntCaptchaImg {
  border-radius: 0 !important;
  width: auto !important;
  -o-object-fit: none !important;
  object-fit: none !important;
  height: auto !important;
}
.dntCaptcha {
  width: 100% !important;
}
.background-fluid {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.background-fluid::after {
  position: absolute;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  background: transparent;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--gradient-color)),
    to(transparent)
  );
  background: -o-linear-gradient(
    bottom,
    var(--gradient-color) 0%,
    transparent 100%
  );
  background: linear-gradient(0deg, var(--gradient-color) 0%, transparent 100%);
  z-index: 0;
  top: 0;
  left: 0;
}
.background-fluid img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}
.active-code-div {
  padding: 16px;
  border-radius: var(--card-radius);
  background-color: var(--light-primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
#activeCodeCopy {
  cursor: pointer;
}
#activeCode {
  color: var(--primary-color2);
}
#copyStatus {
  color: var(--dark-primary-color);
}
.dntCaptcha {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#DNTCaptchaInputText {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
}
@media screen and (max-width: 1390px) {
  .card-div {
    padding: 32px;
  }
}
@media screen and (min-width: 992px) {
  .info-div {
    position: sticky;
    top: 0px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media screen and (max-width: 992px) {
  .card-div {
    padding: 32px 120px;
  }
}
@media screen and (max-width: 600px) {
  .card-div {
    padding: 32px 20px;
  }
}
@media screen and (max-width: 360px) {
  .card-div {
    padding: 32px 16px;
  }
  .app-div a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100%);
    flex: 1 1 calc(100%);
  }
}
.enamad-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}