/*General Styles*/
body {
    /*--Colors--*/
    --th-primary-clr: #0101cd;
    --th-secondary-clr: #47c7ca;
    --th-light-clr: #fbfbfb;
    --th-dark-clr: #000000;
    /*--Body styles--*/
    font-family: 'IRANSans';
    position: relative;
    transition: all 1s;
}

* {
  font-size: 14px;
  ;
}

a {
  color: var(--th-primary-clr);
  text-decoration: none;
}

a:hover {
  color: var(--th-primary-clr);
}

.my-container {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.right-panel {
  width: 40vw;
  height: 100vh;
  background-color: white;
  position: relative;
}

.panel-header {
  position: absolute;
  right: 0;
  top: 0;
}

.logo {
  position: absolute;
  right: 28px;
  top: 28px;
}

.right-panel-content {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  /* -ms-transform: translateY(-50%); */
  transform: translateY(-50%);
}

.suggestion {
  margin-bottom: 50px;
  padding-right: 20px;
  font-size: .75em;
  text-wrap: normal;
}

div.list {
  counter-reset: list-number;
}

div.list div {
  max-width: calc(100% - 210px) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.right-panel-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #8d8d8d;
  width: 100%;
}

.media {
/*  width: 210px;
  height: 65px;*/
  right: 0;
  display: flex;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
/*  background-color: var(--th-primary-clr);*/
  margin-bottom: 50px;
}

.media>a {
  align-self: center;
  margin-right: 8px;
}



.instagram-src {
  content: url(../img/loginimages/instagram.png);
}

.aparat-src {
    content: url(../img/loginimages/aparat-logo.png);
}

.soroush-src {
    content: url(../img/loginimages/soroush-logo.png);
}

.telegram-src {
    content: url(../img/loginimages/telegram-logo.png);
}

.facebook-src {
    content: url(../img/loginimages/facebook-logo.png);
}

.twiiter-src {
    content: url(../img/loginimages/twiiter-logo.png);
}

.rubika-src {
    content: url(../img/loginimages/rubika-logo.png);
}

.igap-src {
    content: url(../img/loginimages/igap-logo.png);
}

.bale-src {
    content: url(../img/loginimages/bale-logo-flat.png);
}

.ita-src {
    content: url(../img/loginimages/ita-logo.png);
}

.copyright-text {
  text-align: left;
  padding-left: 30px;
  font-size: small;
}

.left-panel {
    width: 80vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.center-panel {
  position: absolute;
  top: 50%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: auto;
  margin: 0 21px 17px 0;
  padding: 36px 32px 37px 31px;
  /*border-radius: 4px;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  box-shadow: 0 35px 50px 0 rgb(0 0 0 / 16%);
  background-color: #fff;*/
}

.center-panel > .title {
    font-family: IRANSans;
    text-align: center;
    color: #2a208d;
    margin-bottom: 36px;
}


.login-line {
  border-top: 1px solid #cacaca;
  margin: 10px -22px;
}

.registration-text {
  color: #8d8d8d !important;
  font-size: smaller;
  margin-bottom:0 !important
}


div.list div:before {
  counter-increment: list-number;
  content: counter(list-number);
  margin-right: 8px;
  margin-left: 8px;
  margin-bottom: 8px;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--th-secondary-clr);
  border-radius: 50%;
  color: #fff;
}



.center-panel>form>.username {
  box-sizing: border-box;
  width: 100%;
  padding: 9px 16px 10px 72px;
  border-radius: 3px;
  border: solid 1px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin-bottom: 20px;
}

.center-panel>form>.password {
  box-sizing: border-box;
  width: 100%;
  padding: 9px 16px 10px 72px;
  border-radius: 3px;
  border: solid 1px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin-bottom: 20px;
}

.forgotten-password {
  font-size: smaller;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: right;
  color: #8d8d8d !important;
  border-radius: 4px;
  padding: 5px;
}

.login-button {
  margin: 10px 2px 10px 1px;
  padding: 6px 39.8px 9px 35.2px;
  border-radius: 4px;
  border: none;
  background-color: var(--th-primary-clr);
  color: white;
  font-size: medium;
}

.radio-container {
  display: inline;
  position: relative;
  padding-right: 30px;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: smaller;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-container input:checked~.checkmark {
  background-color: var(--th-primary-clr);
}

.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

.radio-container input:checked~.checkmark:after {
  display: block;
}

.radio-container .checkmark:after {
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.partially-span {
  font-weight: bold;
}

div.list div {
  max-width: calc(100% - 210px) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion {
  margin-bottom: 50px;
  padding-right: 20px;
  font-size: .75em;
  text-wrap: normal;
}

@media (max-width: 768px) {
  .left-panel {
    display: none;
  }

  .right-panel {
    display: none;
  }

  body {
    background-color: #eee;
  }

  .logo {
    display: block;
    text-align: center;
    right: 0;
    width: 100%;
  }

  .logo-src {
    content: url(../images/logo.png);
  }

    .center-panel {
        top: 370px;
        left: 50%;
        border-radius: 4px;
        -webkit-backdrop-filter: blur(17px);
        backdrop-filter: blur(17px);
        box-shadow: 0 35px 50px 0 rgb(0 0 0 / 16%);
        background-color: #fff;
    }
}

.media i {
  color: #fff;
  font-size: 34px;
}