body,html{
    background-color: #ffffff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    margin: 0px;
    position: relative;
    font-family: 'Vazirmatn', sans-serif;
}

.title{
    position: absolute;
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
}

.title h1{
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 2000;
    text-align: center;
    font-size: 50px;
    margin: 0;
}

.title h4{
    margin: 0;
    color: #A1A1A1 ;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.title a{
    background-color: #6601FF;
    width: fit-content;
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    text-decoration: none;
    padding: 10px 60px;
    padding-top: 14px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    box-shadow: 0px 0px 30px 0px rgba(103, 1, 255, 0.25);
    transform: scale(1);
    transition: 0.3s;
}

.title a:hover{
    transform: scale(0.92);
}

.logo-header{
    width: 70vw;
    margin-left: 15vw; 
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.logo-header img{
    position: relative;
    width: 100%;
}

.loader{
    position: absolute;
    z-index: 100;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(57deg, #22e9de, #00fff2, #6601FF, #6601FF, #6601FF);
    background-size: 1000% 1000%;
    background-position:97% 100%;
    -webkit-animation: ani 10s ease-in infinite;
    -moz-animation: ani 10s ease-in infinite;
    animation: ani 10s ease-in infinite;
    animation-iteration-count: 1

}

.loader .logo{
    width: 50%;
    margin-left: 25%;
    margin-top: 250px;
    animation-name: bounceIn;
    -webkit-animation-duration: 10s;
    animation-duration: 10s; 
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; 
    animation-delay: 7s;
}

@media (max-width: 800px) {
    .title{
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .title h1{
        font-size: 30px;
    }
    
    .title h4{
        font-size: 13px;
    }
    
    .title a{
        margin-top: 60px;
    }
    
}
@keyframes bounceIn {
    0% { 
       opacity: 0; 
       transform: scale(.3);
    }
    50% { 
       opacity: 1;
       transform: scale(1.05);
    }
    70% {
       transform: scale(.9);
    }
    100% {
       transform: scale(1);
    }
 } 

@-webkit-keyframes showLogo {
    0%{transform: scale(0)}
    100%{transform: scale(1)}
}
@-moz-keyframes showLogo {
    0%{transform: scale(0)}
    100%{transform: scale(1)}
}
@keyframes showLogo { 
    0%{transform: scale(0)}
    100%{transform: scale(1)}
}



@-webkit-keyframes ani {
    0%{background-position:4% 0%}
    100%{background-position:97% 100%}
}
@-moz-keyframes ani {
    0%{background-position:4% 0%}
    100%{background-position:97% 100%}
}
@keyframes ani { 
    0%{background-position:4% 0%}
    100%{background-position:97% 100%}
}




@keyframes zoom-in {
	50% {
		width: var(--size);
	}
	60% {
		width: calc(var(--size) * 0.9);
	}
	100% {
		width: 250%;
	}
}
@keyframes fade-out {
	0%, 85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

input{
    background-color: #F5F5F5;
    border: 2px solid #F5F5F5;
    padding: 15px;
    border-radius: 10px;
    direction: rtl;
    margin-bottom: 20px;
    color: #1A191C;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bold;
    transition: 0.3s;
    font-size: 14px;
}

input:focus{
    border: 2px solid #6601FF;
    color: #6601FF;
    outline: none !important;
}
label{
    text-align: right;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.notification{
    position: fixed;
    top: 30px;
    left: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(50px);
    background-color: rgb(255, 255, 255,0);
    z-index: 2000;
    padding: 20px 50px 15px 50px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    transform: translateY(-200%);
    max-width: 300px;
    animation: 0.3s linear 0s forwards alternate show, 0.3s linear 5s forwards reverse show;
}


@keyframes show{
        from{
            transform: translateY(-200%);
        }
        to {
            transform: translateY(0%);
        }
}


.notification.success svg{
    background-color: rgb(152, 232, 204);
    stroke: white;
}

.notification.danger svg{
    background-color: rgb(244, 97, 84);
    stroke: white;
}

.notification.warning svg{
    background-color: rgb(241, 213, 88);
    stroke: white;
}


.notification div{
    width: 88%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 34px;
}
.notification span{
    width: 12%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
.notification svg{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 25px;
    padding: 2px;
    border-radius: 100%;
}

@media (max-width: 900px) {
    .notification{
        
        top: 30px;
        left: 5vw;
        /* min-height: 80px; */
        height: auto;
        padding: 20px 5vw 15px 5vw;
      
        /* max-width: 85vw; */
        /* animation: Hide 200ms 7s linear forwards; */
    }
    
    .notification.success svg{
        background-color: rgb(152, 232, 204);
        stroke: white;
    }
    .notification.danger svg{
        background-color: rgb(244, 97, 84);
        stroke: white;
    }
    .notification.warning svg{
        background-color: rgb(241, 213, 88);
        stroke: white;
    }
    
    .notification div{
        width: 80%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 34px;
    }
    .notification span{
        width: 10%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        margin-right: 5%;
    }
    .notification svg{
        margin-left: unset;
        margin-right: 10px;
    }
}