
:root {
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: inherit;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Roboto, Poppins-Regular, sans-serif;
}

.limiter[dir='rtl'] {
    font-family: Shabnam;
}

.txt1 {
    font-size: 13px;
    line-height: 1.4;
    color: #999999;
    letter-spacing: .25px;
    font-weight: 500;
}

.txt2 {
    font-size: 13px;
    line-height: 1.4;
    color: #009788;
    margin-left: 3px;
    text-decoration: none;
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.4;
    color: #00ad5f;
    text-transform: uppercase;
}

/*==================================================================
[ Size ]*/
.size1 {
    width: 355px;
    max-width: 100%;
}

.size2 {
    width: calc(100% - 43px);
}

.limiter {
    width: 100vw;
    margin: 0 auto;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}

.wrap-login {
    width: 1170px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border-radius: 2px;
    align-items: stretch;
    flex-direction: row-reverse;
}

.effect1 {
    box-shadow: 0 10px 30px -10px #777;
}



/*==================================================================
[ login more ]*/
.login-more {
    flex: 1 1 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

    .login-more img {
        height: 100%;
        width: 100%;
    }

/* .login-more::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
} */

/*==================================================================
[ Form ]*/

.login-form {
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    padding: 40px 65px 20px 65px;
}

.login-form-title {
    font-size: 20px;
    color: #555555;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
}



/*------------------------------------------------------------------
[ Input ]*/



.form__group {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 0 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form__field {
    font-family: inherit;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #d2d2d2;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}



.login-faild .form__field {
    border-bottom-color: #d50000;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 16px;
    cursor: text;
    top: 20px;
}

[dir='rtl'] .form__field:placeholder-shown ~ .form__label {
    font-size: 15px;
}

label,
.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    left: 5px;
    display: block;
    transition: 0.2s ease all;
    font-size: 12px;
    color: #9b9b9b;
}

[dir='rtl'] label,
[dir='rtl'] .form__field:focus ~ .form__label {
    left: auto;
    right: 5px;
}

.login-faild label,
.login-faild .form__field:focus ~ .form__label {
    color: #d50000;
}

.show-hide {
    position: absolute;
    top: 38%;
    right: 0;
    background: #fff;
    cursor: pointer;
}

[dir='rtl'] .show-hide {
    right: auto;
    left: 0;
}

.form__field:focus ~ .form__label {
    color: #009788;
}

.form__field:focus {
    padding-bottom: 6px;
    /* border-bottom: 2px solid #009788; */
}

[dir='rtl'] .form__field {
    direction: rtl;
}

.bar {
    position: relative;
    display: block;
    width: 100%;
}


    .bar:before,
    .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #5264AE;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

.login-faild .bar:before,
.login-faild .bar:after {
    background: #d50000;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%;
}


/*--------------------Captcha-------------------------*/


.img-captcha {
    position: absolute;
    top: 15%;
    right: 0;
}

[dir='rtl'] .img-captcha {
    left: 0;
    right: auto;
}


.captcha_field {
    width: 50%;
}


.captcha_bar {
    width: 50%;
}


.reset_captcha {
    position: absolute;
    top: 30%;
    cursor: pointer;
    right: 110px;
}

[dir='rtl'] .reset_captcha {
    left: 110px;
    right: auto;
}

/*---------------------------------------------*/
/* .focus-input {
  position: absolute;
  display: block;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #00ad5f;
  visibility: hidden;
  opacity: 0;

  transition: all 0.4s;
  transform: scaleX(1.1) scaleY(1.3);
}

.input:focus + .focus-input {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
} */
.text-center {
    flex: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.login-error {
    font-size: 13px;
    color: #d93025;
    display: flex;
    margin-top: 10px;
}

.login-error-icon {
    display: block;
    margin-right: 3px;
}

/*------------------------------------------------------------------
[ Or ]*/
.or {
    margin: 24px 0;
    width: 80%;
    display: flex;
    align-items: center;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.or-bar {
    flex: auto;
    border: none;
    height: 1px;
    background-color: #aaa;
}

.or span {
    color: #ccc;
    padding: 0 12px;
}





/*------------------------------------------------------------------
[ Button ]*/
.container-login-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    position: relative;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    flex: 0 0 50%;
    line-height: 1.2;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 0;
    overflow: hidden;
    border: none;
    outline: none;
    border-radius: 4px;
    text-overflow: ellipsis;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    background-color: #2ecc71;
    color: #fff;
    transition: background-color .3s;
    cursor: pointer;
}

[dir='rtl'] .btn {
    font-family: Shabnam;
    font-size: 16px;
}

.btn:hover,
.btn:focus {
    background-color: #27ae60;
}

.btn > * {
    position: relative;
}

.btn span {
    display: block;
    padding: 12px 24px;
}

.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    padding-top: 0;
    border-radius: 100%;
    background-color: rgba(236, 240, 241, .3);
    transform: translate(-50%, -50%);
}

.btn:active:before {
    width: 120%;
    padding-top: 120%;
    transition: width .2s ease-out, padding-top .2s ease-out;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
    .login-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .login-more {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .login-form {
        width: 100%;
    }

    .login-more {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 150px;
    }

    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 100%;
    }

    .rs2-wrap-input100 {
        border-left: 1px solid #e6e6e6;
    }
}

@media (min-width: 1366px) {
    .or {
        width: 40%;
    }
}

@media (min-width: 768px) {
    .or {
        width: 60%;
    }
}


@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .login-form {
        flex: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .login-more {
        display: none;
    }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.auth-field-error {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #d50000;
    font-size: 12px;
}


.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}
/* 
.btn.red {
  background-color: #e74c3c;
}

.btn.red:hover, .btn.red:focus {
  background-color: #c0392b;
} */
.loader {
    position: relative;
    margin: 30px auto;
    width: 100px;
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {

    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {

    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

.logout-msg {
    color: #009783;
    font-weight: bolder
}

.page-caption {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.333;
}

.c-login__input {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}



.c-login__verification-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*width: 150px;*/
    position: relative
}

    .c-login__verification-input:before {
        content: "";
        width: 20px;
        height: 28px;
        position: absolute;
        right: -20px;
        background-color: #fff
    }

.c-login__verification-origin {
    font-family: IRANYekanDigits,monospace;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 1.333;
    letter-spacing: 35px;
    width: 315px;
    padding: 0;
    margin-right: -30px;
    border: none;
    direction: ltr;
    color: #5a5a5a;
}

@-moz-document url-prefix() {
    .c-login__verification-origin {
        letter-spacing: 34px;
    }
}

.c-login__verification-origin::-ms-clear {
    display: none
}

.c-login__verification-border {
    display: flex
}

    .c-login__verification-border:before {
        content: "";
        display: block;
        /*width: 20px;*/
        height: 2px;
        background-color: #000
    }

    .c-login__verification-border div {
        display: flex
    }

        .c-login__verification-border div:after, .c-login__verification-border div:before {
            content: "";
            display: block;
            width: 40px;
            height: 2px;
            background-color: #d2d2d2;
            margin-right: 10px
        }

.c-login__verification {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

input {
    outline: none
}

.validation-summary-errors {
    width: 100%;
    text-align: left;
}

[dir='rtl'] .validation-summary-errors {
    text-align: right;
}

.validation-summary-errors ul {
    list-style-type: none;
}

    .validation-summary-errors ul li {
        margin-top: 0.5rem;
    }
