*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: vazir;
}
body{
    background-color: #ebebeb;
}

/* alert (notification) */
@keyframes showNotification{
0%{
    opacity: 0;
}
100%{
    opacity: 100%;
}
}
.custom-alert{
animation: showNotification .4s forwards;
position: absolute;
top: 15px;
right: 15%;
padding: 10px;
width: 300px;
border-radius: 30px;
text-align: center;
font-size: 16px;
color: white;
z-index: 9999;
}
.alert-bg-success{
background-color: #43a043;
}
.alert-bg-danger{
background-color: crimson !important;
}
.alert-bg-danger-50{
background-color: #ffb3c2 !important;
}
.alert-bg-warning{
background-color: #e29300;
}
.alert-bg-warning-50{
background-color: #ffd380 !important;
}
/* end alert (notification) */

.form{
    display: block;
    width: 40%;
    margin: 30px auto !important;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px #dcdcdc;
}
.form .form-group{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row-reverse;
    text-align: right;
}
.form .form-group select{
    float: left;
    margin-right: 10px;
}

@media screen and (max-width: 800px){
    .form{
        width: 80%;
    }
    #sessionForm input, #sessionForm select, #sessionForm option{
        font-size: 13px !important;
    }
}