@font-face {
    font-family: 'tanha';
    src: url('./fonts/Tanha.eot');
    /* IE9 Compat Modes */
    src: url('./fonts/Tanha.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('./fonts/Tanha.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('./fonts/Tanha.woff') format('woff'),
        /* Pretty Modern Browsers */
        url('./fonts/Tanha.ttf') format('truetype');
    /* Safari, Android, iOS */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    direction: rtl;
    font-family: 'tanha', arial, tahoma;
}

.body {
    width: 100vw;
    height: 100vh;
    background-image: url("./bg.jpg");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-family: 'tanha';
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.form {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    flex-direction: column;
}

.h1 {
    width: 100%;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.input_txt {
    text-align: center;
    height: 30px;
    border-radius: 15px;
    outline: none;
    border: none;
    margin: 10px auto;
    width: 80%;
    direction: ltr;
}

.input_btns_div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
}

.input_btn {
    padding: 5px 10px;
    width: 200px;
    border: none;
    outline: none;
    height: 30px;
    border-radius: 15px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: all 1s ease;
    font-weight:bolder;
}

.input_btn:hover{
    background: radial-gradient(ellipse farthest-corner at left top, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at right bottom, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: inset rgba(0, 0, 0, 0.24) 0px 3px 8px;
}