
:root{
    --base-color: #0a3450;
    --red-color: #0ccfbf;
}
body {
    font-family: 'IranSans';
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background: #f8f9fd;
    color: gray;
    text-align: right;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: var(--base-color);
}

a:hover, a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.bg-primary {
    background: var(--base-color) !important;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.wrap {
    width: 100%;
}

.text-wrap, .login-wrap {
    width: 50%;
}

@media (max-width: 991.98px) {
    .text-wrap, .login-wrap {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .ftco-section {
        padding: 6em 0;
    }
    .btn.btn-primary.width_md_50{
        width: calc(50% - 4px)
    }
    .login-wrap {
        background: #fff;
    }
    .wrap {
        width: 100%;
        border-radius: 5px;
        -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
        -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
        box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    }
}

.text-wrap {
    background: var(--red-color);
    background: -moz-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, var(--red-color)), color-stop(100%, var(--base-color)));
    background: -webkit-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -o-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -ms-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -webkit-linear-gradient(315deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -o-linear-gradient(315deg, var(--red-color) 0%, var(--base-color) 100%);
    background: linear-gradient(135deg, var(--red-color) 0%, var(--base-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr= var(--red-color), endColorstr=var(--base-color), GradientType=1);
    color: #fff;
}

.text-wrap .text h2 {
    font-weight: 900;
    color: #fff;
    font-size: 24px;
}

.login-wrap {
    position: relative;
}

.login-wrap h3 {
    font-weight: 300;
}

.form-group {
    position: relative;
}

.form-group .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
}

.form-group a {
    color: gray;
}

.form-control {
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    font-size: 16px;
    border-radius: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.2) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.2) !important;
}

.form-control:focus, .form-control:active {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.social-media {
    position: relative;
    width: 100%;
}

.social-media .social-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    margin-right: 5px;
    border-radius: 50%;
}

.social-media .social-icon span {
    color: #999999;
}

.social-media .social-icon:hover, .social-media .social-icon:focus {
    background: var(--base-color);
}

.social-media .social-icon:hover span, .social-media .social-icon:focus span {
    color: #fff;
}

.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "\f0c8";
    font-family: "Font Awesome 5 Brands";
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    font-size: 20px;
    margin-top: -4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .checkmark:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
    display: block;
    content: "\f14a";
    font-family: "fontawesome";
    color: rgba(0, 0, 0, 0.2);
}

/* Style the checkmark/indicator */
.checkbox-primary {
    color: var(--base-color);
}

.checkbox-primary input:checked ~ .checkmark:after {
    color: var(--base-color);
}

.btn {
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
}

.btn.btn-primary {
    background: var(--base-color);
    color: #fff;
    background: var(--red-color);
    background: -moz-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, var(--red-color)), color-stop(100%, var(--base-color)));
    background: -webkit-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -o-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -ms-linear-gradient(-45deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -webkit-linear-gradient(315deg, var(--red-color) 0%, var(--base-color) 100%);
    background: -o-linear-gradient(315deg, var(--red-color) 0%, var(--base-color) 100%);
    background: linear-gradient(135deg, var(--red-color) 0%, var(--base-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--red-color), endColorstr=var(--base-color), GradientType=1);
}

.btn.btn-primary.width_50{
    width: calc(50% - 4px)
}

.btn.btn-primary:hover {
    border: 1px solid var(--base-color);
    background: var(--base-color);
    color: #fff;
}

.btn.btn-primary.btn-outline-primary {
    border: 1px solid var(--base-color);
    background: transparent;
    color: var(--base-color);
}

.btn.btn-primary.btn-outline-primary:hover {
    border: 1px solid transparent;
    background: var(--base-color);
    color: #fff;
}

.btn.btn-white {
    background: #fff;
    border: 1px solid #fff;
    color: #fff;
}

.btn.btn-white:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.btn.btn-white.btn-outline-white {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.btn.btn-white.btn-outline-white:hover {
    border: 1px solid transparent;
    background: #fff;
    color: #000;
}
.code-box {
     width: 100%;
     border: 1px solid rgb(255, 203, 70);
     border-radius: 5px;
     border: 1px solid rgba(204,203,197,0.4);
     display: block;
}

.code-box input {
    height: 40px;
    width: 193px;
    margin: 10px auto 0px auto;
    display: block;
    border: 0;
    text-align: center;
    background-color: transparent !important;
    font-size: 20px;
    letter-spacing: 21px;
    padding-left: 25px;
    text-align: left;
    direction: ltr;
    outline: 0;
    -moz-appearance: none;
}
.code-box input::-webkit-outer-spin-button,
.code-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.code-box span {
    width: 20px;
    display: inline-block;
    margin: 0 4px;
    border-bottom: 2px solid rgba(204,203,197,0.9);
    position: relative;
    bottom: 15px;
}
.rtl{
    direction: rtl;
}
.ltr{
    direction: ltr;
}
