/*  option fonts */
@import url("https://fonts.googleapis.com/css2&family=League+Spartan&family=Roboto&display=swap");
body{
    background-color: #7F6DF2;
    direction: rtl;
}
.container{
    max-width: 1000px;
    margin: auto;
    padding-bottom: 20px;
    background-color: white;
    box-shadow: rgb(50,50,93,0.25) 0px 13px 27px -5px, rgb(0,0,0,0.3) 0px 8px 16px -5px;
}
h2{
    font-weight: 400;
    text-align: center;
    font-size: 1.7rem;
    margin-top: 25px;
    color: white;
    font-family: 'League Spartan', 'sans-serif';
}
.user-action{
    position: relative;
    border-bottom: 1px solid rgb(216,216,216);
}
input{
    border: 0px;
    outline: none;
    width: calc(100% - 80px);
    padding: 12px 60px 12px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}
button{
    position: absolute;
    right: 1px;
    top: 1px;
    border: none;
    background-color: transparent;
    color: #cacaca;
    cursor: pointer;
    /*height: 42px;*/
}
button > svg{
    fill: #7F6DF2;
    padding: 0px 4px;
    cursor: pointer;
    outline: none;
}
textarea{
    width: calc(100% - 60px);
    min-height: 440px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    padding: 20px;
    padding-left: 40px;
    line-height: 180%;
    vertical-align: top;
    cursor: pointer;
    resize: none;
    outline: none;
    border: none;
}
textarea::-webkit-scrollbar{
    width: 10px;
}
textarea::-webkit-scrollbar-thumb{
    background: #cacaca;
    border-radius: 4px;
}







