@font-face
{
    font-family: 'Vazir';
    src: url('/static/fonts/vazir/Vazir.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

*
{
    font-family: 'Vazir';
}

body
{
    background-color: black;
}

a
{
    color: lightblue;
    text-decoration: none;
}

a:hover
{
    color: azure;
}

a:active
{
    color: wheat;
}

button
{
    background-color: black;
    color: azure;
    border: 1px solid wheat;
    cursor: pointer;
    padding: 6px 18px;
}

button:hover
{
    color: black;
    background-color: wheat;
    border-color: wheat;
}

button:active
{
    color: black;
    border-color: azure;
    background-color: azure;
}

input
{
    background-color: black;
    border: 1px solid wheat;
    color: azure;
    padding: 6px 18px;
}

#root 
{
    width: 900px;
    margin: auto;
}

#header
{
    color: azure;
}

#header h1
{
    color: wheat;
}

#content
{
    text-align: center;
    color: azure;
    border: 1px solid azure;
    padding: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

#loading
{
    text-align: center;
    color: azure;
    padding-top: 30px;
    padding-bottom: 30px;
}

.component-header-default
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.component-header-default .action-section a
/* .component-header-default .action-section button */
{
    margin-right: 12px;
}

.login-page .sections
{
    display: flex;
    justify-content: space-between;
}

.login-page .section
{
    margin: auto;
    margin-top: 0px;
}

.login-page .login-form input
{
    direction: ltr;
    text-align: center;
}

.login-page .login-form .action-section button
{
    margin-right: 9px;
}

.download-page 
{
    text-align: justify;
}

.pricing-page .plans
{
    display: flex;
    justify-content: space-between;
}

.pricing-page .plans h1 
{
    text-align: center;
}

.pricing-page .plans .plan
{
    text-align: justify;
    margin: auto;
    margin-top: 0px;
    width: 450px;
}

.pricing-page .plans .plan ul
{

}