<style>/* Style for the form container */
.homepage-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* Style for the input field */
.homepage-form-input {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Input field hover and focus styles */
.homepage-form-input:focus {
    outline: none;
    border-color: #6a5acd; /* Slight violet tone */
    box-shadow: 0px 3px 8px rgba(106, 90, 205, 0.3);
}

/* Style for the submit button */
.homepage-form-button {
    padding: 12px 20px;
    background-color: #ffc107; /* Matches yellow button */
    border: none;
    border-radius: 5px;
    color: #000; /* Black text for contrast */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Button hover style */
.homepage-form-button:hover {
    background-color: #ffb300; /* Darker yellow on hover */
    box-shadow: 0px 4px 10px rgba(255, 179, 0, 0.4);
}


input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
button:focus {
    outline: none; /* Removes the browser's default outline */
    border-color: inherit; /* Keeps the border color unchanged */
    box-shadow: none; /* Removes any additional focus shadow applied by themes */
}

input:focus {
    outline: none; /* Removes the dotted outline */
}

</style>