input ,
button ,
body {
    font-family: "Vazir", sans-serif;
}

.btn-down {
    margin-top: 10px;
    cursor: pointer;
    outline: 0;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #48a866;
    border-color: #48a866;
}

.inp-edit { 
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 4px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#edit-form {
    margin: 0px;
    
}

#prsbar {
    padding: 5px;
    padding-left: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 25%; 
    height: 25px;
    background: #eee;
}

#prsbar2 {
    height: 100%;
    background-color: #4CAF50;
    text-align: center;
    color: rgb(0, 0, 0);
    line-height: 25px;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

#select-box {
    margin-top: 10px;
    cursor: pointer;
    outline: 0;
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 8px 12px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #48a866;
    border-color: #48a866;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

.layout-h {
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#frm-log {
    flex-direction: column;
    height: 300px;
}

.inp-log {
    width: 200px;
    padding: 15px;
    border-radius: 15px;
}

#btn-log {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 12px 27px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #999999;
    background: #ffffff;
    border: 3px solid #999999;
    cursor: pointer;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    border-radius: 15px;
}

#btn-log::after,
#btn-log::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

#btn-log::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

#btn-log::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

#btn-log:hover {
    color: #222222;
}

#btn-log:hover::after,
#btn-log:hover::before {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-color: #222222;
}