@font-face {
    font-family: baloo;
    src: url(../font/BalooBhaijaan2-VariableFont_wght.ttf);
}
::-webkit-scrollbar {
    width: 5px;
    height: 7px;
    background-color: #bf00ff00;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0px -1px 13px #00000000;
}

::-webkit-scrollbar-thumb {
    background: #3eaaf2;
    border-radius: 10px;
}
body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #00040c, #000d29);
    box-sizing: border-box;
}
#body{
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    position: fixed;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
#div-box{
    width: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    column-gap: 30px;
}
#div-1{
        width: 100%;
        background-color: #00000096;
        max-width: 500px;
        min-height: 500px;
        padding: 15px 10px;
        box-sizing: border-box;
        border-radius: 7px;
        box-shadow: #00ffd93b 0 0 30px 0;
        color: #fff;
        font-family: baloo;
        direction: rtl;
        position: relative;
}
.title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    
}

.line{
    height: 2px;
    background-color: #ffffffa6;
    border-radius: 10px;
    margin: 5px 0;
}
.input-box{
    margin: 20px 0;
}
.input-box input{
        width: 100%;
    box-sizing: border-box;
    background-color: #00000000;
    border: 2px solid #fff;
    border-radius: 7px;
    padding: 5px 10px;
    text-align: center;
    color: #fff !important;
    font-family: baloo;
}
.input-label{
    padding-bottom: 5px;
}
#send-box{
width: 100%;
    height: 40px;
    border-radius: 7px;
    background-color: #000d29;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: space-between;
    box-sizing: border-box;
}
#message-box{
    padding: 5px 10px;
    margin: 10px 0;
    border: 2px solid #ffffff73;
    border-radius: 7px;
    line-height: 130%;
    display: none;
}
#message-box p{
    font-size: 0.8em;
}
#foot{
    text-align: center;
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 0.8em;
    color: #ffffffa1;
}