body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #00040c, #000d29);
    box-sizing: border-box;
    color: #fff;
}
#div-login-box-box{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
#div-login-box{
    height: 100%;
    max-height: 800px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    max-width: 500px;
    background-color: #000000c2;
    box-shadow: 0 0 20px 0 #000ec13b;
    border-radius: 10px;
    padding: 7px;
    box-sizing: border-box;
}
#div-login-box-title{
    width: 100%;
    padding: 10px 10px;
    cursor: default;
    background-color: #ffffff17;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.9em;
}
form{
    display: grid;
    row-gap: 20px;
    padding-bottom: 20px;
}
#form-header{
    font-size: 1.3em;
    margin: 30px 20px 20px;
}
#form-error-box{
    display: none;
    width: 100%;
    border: #c60000 2px solid;
    border-radius: 5px;
    padding: 5px 5px 5px;
    box-sizing: border-box;
    direction: rtl;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}
#form-error-img-box{
    height: 100%;
    display: flex;
    align-items: center;
}
#form-error-img{width: 50px;}
#form-error-title{
    line-height: 25px;
    font-size: 0.9em;
    font-weight: 700;
}
#form-error-text{
    font-size: 0.8em;
    line-height: 25px;
}
.form-input-box{
    direction: ltr;
    display: grid;
    row-gap: 10px;
}
.form-input-box-label{
    padding-left: 2px;
}

.form-input-box-input-input{
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #ffffff00;
    border: 2px solid #ffffff8f;
    padding: 7px 5px;
    color: #fff;
    direction: ltr;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 900;
}
.from-input-box-error{
    width: 100%;
    height: 10px;
    font-size: 0.8em;
    padding-right: 4px;
    direction: rtl;

}
#password{
    letter-spacing: 2px;
    font-weight: 900;
}


#captcha-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    position: relative;
}

loading-animation{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 5px;
    padding: 5px;
    direction: rtl;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    /* border: 2px solid #ffffff8f; */
    z-index: 2;
    backdrop-filter: blur(20px);
    background-color: #ffffff30;
    cursor: not-allowed;
}
.loading-animation-line {
    height: 1%;
    max-height: 30px;
    width: 3px;
    background-color: #ffffffc4;
    border-radius: 5px;
}
.loading-animation-line.loading-line-0{animation: loading-line-animation 750ms 000ms  linear infinite alternate;}
.loading-animation-line.loading-line-1{animation: loading-line-animation 750ms 100ms  linear infinite alternate;}
.loading-animation-line.loading-line-2{animation: loading-line-animation 750ms 200ms  linear infinite alternate;}
.loading-animation-line.loading-line-3{animation: loading-line-animation 750ms 300ms  linear infinite alternate;}
.loading-animation-line.loading-line-4{animation: loading-line-animation 750ms 400ms  linear infinite alternate;}
.loading-animation-line.loading-line-5{animation: loading-line-animation 750ms 500ms  linear infinite alternate;}
.loading-animation-line.loading-line-6{animation: loading-line-animation 750ms 600ms  linear infinite alternate;}

.loading-animation-line-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 5px;
    height: 100%;
    direction: ltr;
}


@keyframes loading-line-animation {
    from{height: 1%;}
    to{height: 100%;}
}



#login-box-send-data{
    width: 100%;
    height: 45px;
    background-color: #00287e;
    border-radius: 5px;
    color: #fff;
    border: 0;
    text-align: right;
    padding: 0 10px;
}
