<style>
.search-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#domain-search-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* This ensures the border-radius applies to the children elements */

    margin: 0 auto 20px auto; /* 20px of space below the form */
    gap: 10px;
}


#domain-search-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #333333; /* Almost black border */
    font-size: 16px;
    background-color: #f9f9f9; /* A light grey */
    font-family: Arial, sans-serif;
}

#domain-search-submit {
    padding: 10px 20px; /* More horizontal padding to make the button wider */
    border: none; /* Remove the default browser styles */
    background-color: #007BFF; /* A nice shade of blue */
    color: white; /* White text */
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer; /* Change the cursor when hovering over the button */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* A subtle shadow */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#domain-search-submit:hover {
    background-color: #0056b3; /* A darker blue when hovering over the button */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* A darker shadow when hovering over the button */
}

@media (max-width: 600px) {
    #domain-search-form {
        margin-left: 20px;
        margin-right: 20px;
    }
}
</style>