* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'vazir';
    font-size:10px;
}

@font-face {
    font-family: "Vazir";
    src: url("./fonts/Vazir.eot");
    /* IE9 Compat Modes */
    src: url("./fonts/Vazir.eot?#iefix") format("embedded-opentype"),
      url("./fonts/Vazir.woff2") format("woff2"),
      url("./fonts/Vazir.woff") format("woff"),
      url("./fonts/Vazir.ttf") format("truetype");
    /* Safari, Android, iOS */
  }

html , body{
    font-family: "Vazir" !important;
    font-size: 100%;
    min-width: 330px;
}

.kol{
flex-direction: column;
height: 100%;
background: linear-gradient(to right, #050353, #bab1e6);
min-height: 100vh;
}

.menu-container{
color: #fff;
direction: ltr;
background: linear-gradient(to right, #480048, #c04848);
padding:5px 0;
justify-content: center;
}

.menu{
    width: 95%;
    display: flex;
    justify-content: center;
}

.location{
margin-left: 40px;
}

.login {
    margin-left: 20px;
    color: white;
}

.login a {
    text-decoration: none;
    color: white;
}

.signup{
    margin-left:auto;
    color: white
}

.signup a {
    text-decoration: none;
    color: white;
}

.header-container{
    color:cornsilk;
    background: linear-gradient(to right, #cc9e08, #dfd192);
    display: flex;
    justify-content: center;
    font-weight: 800;
    align-items: center;
}

.header{
width: 90%;
height: auto;
display: flex;
justify-content: space-around;
align-items: center;
flex-flow: column;
}

.header-img{
    width: 100%;
}

.logo {
    width: 40%;
    margin: 10px;
    margin-right: 20px;
}

.image{
    justify-content: space-around;
    display: flex;
    margin-top: auto;
    padding-bottom: 10px;
    padding-top: 10px;
}

@media only screen and (min-width:992px){
    .header{
        justify-content: space-around;
        flex-flow: row;
    }
}

.container{
    margin: auto;
    background-color: white;
    display: flex;
    justify-content: center;
    font-weight: 800;
    height: auto;
}

.form{
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.form .form-title{
font-size:1.5rem;
font-weight: bold;
color: #120e96;
margin-bottom: 1rem;
text-align: center;
}

.form lable{
    font-size: 0.75rem;
}

.form lable,
.form button{
    display:block;
    margin-bottom: 0.7rem;
}

.form input.form-control{
    width:100%;
    padding: 0.6rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.3);
}

.form button{
    width:100%;
    border: none;
    padding: 0.6rem 0.6rem;
    border-radius: 4px;
    background-color: white;
    border: 1px solid rgba(133, 86, 102, 1.5);
    font-size:1rem;
font-weight: bold;
}

.location img:hover {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.footer{
direction: rtl;
background: linear-gradient(to right, #050353, #bab1e6);
padding:20px 0;
justify-content: center;
}

.text{
    color: white;
    width: 95%;
    display: flex;
    justify-content: center;
    text-align: justify;
    text-align: center;
    margin-left: 15px;
padding-right: 15px;
font-weight: bold;
}

.social{

    height: 100%;
}

.social ul{
    align-items: center;
    justify-content: center;
    display: flex;
    list-style: none;
    padding-top: 10px;
}

.social ul li a{
    justify-content: center;
    margin: 5px 10px;
}
.bmodal {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    /*display: none;*/
}

.modal-content {
    width: 30%;
    background: #fff;
    margin: 10% auto;
    border-radius: 3px;
    box-shadow: 0 0 15px #555;
    padding: 20px;
}
.modal-popup {
    width: 30%;
    background: #fff;
    margin: 10% auto;
    border-radius: 3px;
    box-shadow: 0 0 15px #555;
    padding: 5px;
}
input[type=text] {
    width: 100%;
    ;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
    border: 1px solid #ccc;
}
.close {
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    width: 5% auto !important;
    cursor: pointer;
}