xxxxxxxxxx
input[type="text"] {
background-color: rgb(16,22,47);
font-family: "Quicksand", sans-serif;
color: white;
border: none;
border-bottom: 1px solid white;
}
input[type="text"]:focus {
outline: none;
}
xxxxxxxxxx
//SCSS format
input{
&:focus {
outline: none !important;
}
}
textarea{
&:focus {
outline: none !important;
}
}