.search-container {
display: flex;
justify-content: center;
margin: 20px 0;
} #s {
width: 300px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
outline: none;
transition: all 0.3s ease;
box-sizing: border-box; } #searchsubmit {
padding: 10px 15px;
background-color: #ff6600; border: 1px solid #ff6600; border-radius: 0 4px 4px 0;
color: #fff;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
} #searchsubmit:hover {
background-color: #e65c00; } #s:focus {
border-color: #ff6600; box-shadow: 0px 0px 5px rgba(255, 102, 0, 0.5);
}