a{
    text-decoration: none;
}
body {
    margin: 0;
    padding: 0;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family:'iranSans-light';
    direction: rtl;
    overflow-x:hidden;
}

.login-container {
    background-color: #E62F35;
    /*padding: 20px;*/
    margin: 10px;
    border-radius:80px;
    width: 50%;
    height: auto;
    min-height: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position:relative;
}

.login-container h2 {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    /*width: 100%;*/
    padding: 15px;
    text-align: right;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 50px;
    width: 340px;
    box-sizing: border-box;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    outline: none;
}

::placeholder {
    color: gray;
    opacity: 1; /* Firefox */
}


.btn-login,.btn-recovery,.btn-reset {
    background-color: #fff;
    color: #E62F35;
    font-weight: 900;
    margin-top: 3rem;
    padding: 15px;
    width: 200px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease;
    outline: none;
}

.btn-login:hover{
    background-color:pink;
    width:230px;
}
.btn-register {
    background-color: #fff;
    color: #E62F35;
    font-weight: 900;
    margin-top: 1rem;
    padding: 15px;
    width: 200px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease;
}

.btn-register:hover{
    background-color:pink;
    width:230px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 500px) {
    .none-img {
        display: none
    }
}
.btn__google,.btn__email{
    width:50%;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 15px;
    height:50px;
    color:#E62F35;
    margin:2rem auto 0;
    text-align: right;
    line-height: 50px;
    font-weight: 600;
}
.btn__email{
    margin-bottom:2rem;
}
.btn__back{
    display:block;
    width:25%;
    background-color: #fff;
    border-radius: 10px;
    height:35px;
    color:#E62F35;
    margin:2rem auto;
    text-align: center;
    line-height: 35px;
    font-weight: 600;
    outline: none;
}
.back{
    display:none;
}
.btn__google img{
    width:40px;
    height:35px;
}
.btn__email img{
    width:40px;
    height:42px;
}
.btn__google span,.btn__email span{
    width:60%;
}
.or__container{
    text-align: center;
    font-size:1.2rem;
    color:#fff;
}
.create{
    color:#fff;
    text-align: center;
    display:block;
    font-weight: 600;
    font-size:1.2rem;
    transition: all 0.5s ease;
}
.create:hover{
    color:pink;
}
.forgot{
    color:#fff;
    font-size: 0.9rem;
    text-align: center;
}
#formLogin,.signin__email,.register__account,#formRegister,.recovery__pass,#formRecovery{
    display:none;
}

.rule{
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    /*position: absolute;*/
    margin: auto;
    /*display: none;*/
    margin-top: 5rem;
    /*bottom: 2rem;*/
    /*right: 30%;*/
}
.rule__link{
    color:pink;
    font-weight: 600;
    transition: all 0.5s ease;
}
.rule__link:hover{
    color: #fff;

}
.valid {
    border: 5px solid green!important;
    color:green!important;
    box-sizing: border-box;
}
.invalid {
    /*border: 5px solid orange!important;*/
    color:orangered!important;
    box-sizing: border-box;
}