

/* Default Font */
@font-face {
    font-family: VazirmatnRegular;
    src: url(/static/fonts/Vazirmatn-Regular.woff2);
}


* {
    font-family: VazirmatnRegular;
}


body {
    text-align: center;
    margin: 0px;
}


h1 {
    border-bottom: 6px solid #deb645 ;
    background-color: #1c39bb ;
    margin: 0px;
    padding: 15px 0px 15px 0px;
    margin-bottom: 60px;
    color: white;
    font-size: medium;
}


form {
    width: 300px;
    max-width: 90%;
    text-align: right;
    margin: auto;
    border: 1px solid white;
    border-right: 3px solid #1c39bb;
    border-radius: 0px;
    padding: 30px 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 60px;
}


input {
    padding: 9px;
    margin-bottom: 24px;
    margin-top: 3px;
    width: 90%;
    border: 1px solid black;
    /* border-right: 3px solid #1c39bb; */
}


label {
    font-family: 'Courier New', Courier, monospace !important;
    font-size: small;
    font-weight: bold;
}


.form-submit input {
    border: 1px solid #1c39bb;
    background-color: #1c39bb;
    width: 97%;
    cursor: pointer;
    color: white;
    margin-top: 30px;
}

.form-submit input:hover {
    background-color: #deb645;
    border: 1px solid #deb645;
}

.form-submit input:active {
    background-color: #1c39bb7e;
    border: 1px solid white;
}