.form_container {
    position: relative;
    margin-top: 200px !important;
    width: 50%;
    margin: auto;
    padding: 30px;
    background-color: #F56A57;
    border: 10px solid #ffe343;
    box-shadow: 0 0 0 10px #F56A57 !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 500px;
}

.form_container a {
    display: inline-block;
    margin-bottom: 20px; /* More space below the link */
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    font-size: 1.8em; /* Slightly larger font for links */
    transition: color 0.3s ease; /* Smooth color change */
}

.form_container a:hover {
    color: #0056b3; /* Darker shade for better hover effect */
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Added gap between form elements */
    margin-top: 20px; /* Added margin for better spacing */
}

form input[type="text"],
form input[type="number"],
form input[type="file"],
form select {
    width: 80%;
    padding: 12px; /* Increased padding for comfort */
    margin: 12px 0; /* Added margin for spacing */
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners for a softer look */
    font-size: 1em;
    background-color: #f9f9f9; /* Light background for inputs */
    transition: all 0.3s ease; /* Smooth transition on focus */
}

form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="file"]:focus,
form select:focus {
    border-color: #28a745; /* Green border on focus */
    outline: none; /* Removes default outline */
    background-color: #e8f5e9; /* Subtle green background on focus */
}

form input[type="file"] {
    padding: 8px;
    font-size: 1em;
}

form input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 25px; /* Increased padding for better clickability */
    font-size: 18px; /* Slightly larger font */
    border-radius: 8px; /* Rounded corners for buttons */
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease; /* Smooth background change */
}

form input[type="submit"]:hover {
    background-color: #218838;
}

button {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c7c7c7; /* Slightly darker shade on hover */
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

form input[type="submit"], button {
    display: inline-block;
}

#ingredientContainer {
    width: 100%;
    margin-top: 15px;
}

h1 {
    font-size: 2.2em;
    font-weight: bold; 
}

h2 {
    font-size: 2em;
    font-weight: bold; 
}

h3 {
    font-size: 1.8em;
    font-weight: bold;
}

.form_container p {
    font-size: 1.8em;
}

.form_container a {
    color: white !important;
    text-decoration: underline;
}

.form_container a:hover {
    text-decoration: none;
}