﻿
@font-face {
    font-family: 'BZar';
    src: url('../../fonts/BZar.TTF');
}

@font-face {
    font-family: 'BZarBold';
    src: url('../../fonts/BZarBold.TTF');
}

@font-face {
    font-family: 'BMorvarid';
    src: url('../../fonts/BMorvarid.TTF');
}

.fontmorvarid {
    font-family: 'BMorvarid';
    /*font-weight: bolder;*/
}

.fontzar {
    font-family: 'BZar';
    /*font-weight: bolder;*/
}

.fontzarbold {
    font-family: 'BZarBold';
    font-weight: bolder;
}

body {
    direction: rtl;
    background-color: white;
    margin: auto;
    font-family: 'BZar','BZarBold', 'BMorvarid',Tahoma;
}

a {
    font-size: 14px;
    color: #00ad5f;
}

a:hover {
    text-decoration: none;
    color: #555555;
}

p {
    font-size: 14px;
    color: #555555;
}

input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

input::-webkit-input-placeholder {
    color: #999999;
}

input::-moz-placeholder {
    color: #999999;
}

textarea::-webkit-input-placeholder {
    color: #999999;
}

textarea::-moz-placeholder {
    color: #999999;
}

button {
    border: none;
}

.container-button {
    width: 100%;
    justify-content: center;
}

.account-button {
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #00ad5f;
    font-size: 18px;
    color: white;
}

.account-button:hover {
    background-color: #555555;
    transition: 1.5s;
}

.my-container {
    width: 100%;
    margin: 0 auto;
}

.container-form {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #F5F5F5;
}

.wrap-account {
    width: 80%;
    background: white;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

.wrap-account-pic {
    width: 50%;
    background-repeat: no-repeat;
    background-size: contain; 
    /*background-size: cover;*/
    background-position: center;
    position: relative;
    z-index: 1;
}
.gh-wrap-account-pic-mobile {
    margin-top:15px;
    min-width :300px;
    height: 250px;
    z-index: 1;
    background-image: url(../../Images/Site/Login.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /*background-clip: border-box;*/
    transition: background-size 0.2s;
    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display:block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    /*white-space: nowrap;*/
}

.gh-wrap-account-pic {
    min-width: 450px;
    min-height: 450px;
    z-index: 1;
    background-image: url(../../Images/Site/Login.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-clip: border-box;
    transition: background-size 0.2s;
    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);
    display: block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin-bottom: -20px;
}

    .gh-wrap-account-pic:hover {
        /*background-size: 455px;*/   
        background-size: 99%;
    }

.ghform {
    width: 95%;
    max-width: 980px;
    margin: 10px auto 20px auto;
    border-radius: 6px;
    box-shadow: 0px 1px 6px rgba(0,0,0,0.2);
    box-sizing: border-box;
    padding: 0 0 10px;
    overflow: hidden;
    border: 1px solid lightgray;
}
   
.wrap-account-pic:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.account-form {
    display: block;
    flex-wrap: wrap;
    padding: 180px 65px 40px 65px;
}

.success-message {
    color: #356635;
}

.title span {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
}

.account-form-title {
    margin-top: -160px;
    font-size: 25px;
    color: #555555;
    text-align: center;
    width: 100%;
    display: block;
}

.wrap-input-account {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
}

.input-account {
    display: block;
    width: 100%;
    background: transparent;
    font-size: 16px;
    color: #555555;
    padding: 0 25px;
    height: 40px;
}

.focus-account {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.input-account:focus + .focus-account {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    /*font-family: sans-serif;*/
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

