.btn-primary {
    display: flex;
    height: 50px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 43px;
    border: 2px solid #823CF2;
    background: #6B31C7;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
    color: #FFF0F0;
    font-size: 18px;
    font-weight: 400;
    transition: all .25s ease-in-out;
    text-decoration: none !important;
    outline: none;
    font-family: IRANSans;
}

.btn-primary:hover {
    background: #823CF2;
}


.btn-glass {
    display: flex;
    height: 50px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 43px;
    border: 1px solid #823CF2;
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
    color: #823CF2;
    font-size: 18px;
    font-weight: 400;
    transition: all .25s ease-in-out;
    text-decoration: none !important;
    outline: none;
    background-color: transparent;
    font-family: IRANSans;
}

.btn-glass:hover {
    background: #823CF2;
    color: #FFF0F0;
}

.input{
    padding: 15px 20px;
    background-color: var(--bg-body);
    border: 1px solid #823CF2;
    transition: all .25s ease-in-out;
    font-size: 16px;
    width: 100%;
    max-width: 360px;
    border-radius: 5px;
    outline: none;
    color: var(--text-color);
    font-family: IRANSans;
}

.input:hover,.input:active,input:focus{
    box-shadow: 0px 0px 10px 0px #823CF2;
    -webkit-box-shadow: 0px 0px 10px 0px #823CF2;
    -moz-box-shadow: 0px 0px 10px 0px #823CF2;
}