.btn {
position: relative;
}
.btn:before {
content: '';
position: absolute;
left: -25px;
bottom: -30px;
width: 30px;
height: 30px;
background: blue;
transition: .8s ease;
border-radius: 25px;
z-index: -1;
}
.btn:hover:before {
}
.custom-srollbar::-webkit-scrollbar {
-webkit-appearance: none;
width: 8px;
}
.custom-srollbar::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: #c1c1c1;
}
.custom-srollbar::-webkit-scrollbar-thumb:hover {
background-color: #7d7d7d;
}
input:-internal-autofill-selected
или input:-webkit-autofill
background: red;
менять не получиться, но можно вместо него использовать этоinput:-internal-autofill-selected {
-webkit-box-shadow: inset 0 0 0 50px #f04!important;
box-shadow: inset 0 0 0 50px #f04!important;
}