input[type=text] {
    border-radius: 15px;
    width: 100%;
    font-size: 1.9rem;
    outline: none;
    padding: 5px 10px;
    margin-bottom: 15px;
    background-color: #eee;
    box-shadow: inset 0px 0px 11px 5px rgba(0,0,0,0.1);
    border: none;
}
input[type=focus] {
    border: 3px solid black;
}
::-webkit-scrollbar { height: 20px; }
::-webkit-scrollbar-track { background-color: #89328b;  border-radius: 15px;}
::-webkit-scrollbar-thumb { 
    background-color: #cf8bd3;
    border-radius: 15px; 
    box-shadow: 0px 0px 14px 2px rgba(0,0,0,0.5);
}