html, body
{
    font-family: Vazirmatn FD, sans-serif;
    height: 100%;
    margin: 0;
    background: radial-gradient(circle,rgba(240, 255, 255, 1) 0%, rgba(245, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.auth-div
{
    border: 0px solid transparent;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    min-width: 350px;
    max-width: 500px;
    display: block;
    background-color: #ffffff;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .auth-div
    {
        min-width: 350px;
        max-width: 500px;
    }
}

@media only screen and (min-width: 768px) {
    .auth-div
    {
        min-width: 400px;
        max-width: 550px;
    }
}

.auth-header
{
    width: 100%;
    display: flex;
    background-color: #ededed;
    border: 0px solid transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.auth-header-btn
{
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    border: 0px solid transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.auth-header-btn.active
{
    background-color: #ffffff;
}

.auth-body
{
    width: 100%;
    display: block;
    background-color: #ffffff;
    padding: 10px;
    border: 0px solid transparent;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn-secondary
{
    cursor: default !important;
}
