.search-container { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 60%; margin-top: 110px; margin-left: auto; margin-right: auto; margin-bottom: 10px; border: 1px solid #333; border-radius: 12px; height: 300px; } .search-title { font-size: 3em; margin-right: 10px; margin-top: 0px; margin-bottom: 50px; color: white; } .search-box { display: block; width: 90%; height: 40px; padding: 5px; padding-left: 20px; padding-right: 20px; border-radius: 5px; border: none; font-size: 1em; background-color: #333; color: white; } .search-box:focus, .search-box:hover, .search-box:active { outline: none; /* border: 2px solid; border-image: linear-gradient(60deg, #E90363, #E267FE) 1; border-image-slice: 1; border-radius: 5px; */ background-color: #444; } .search-button { display: block; width: calc(90% + 40px); height: 35px; border-radius: 5px; border: none; padding: 5px; font-size: 1.3em; background-color: #E90363; color: white; margin-top: 10px; transition: background 250ms linear; } .search-button:disabled { background: #2f2f2f; color: #666; }