/* General styles */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Soft beige */
    color: #333;
}
nav img {
    max-width: 150px; /* Adjust size */
    height: auto;
    margin-bottom: 20px; /* Add spacing below the image */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for a polished look */
}
h1 {
    color: #ffc400; /* Construction yellow */
}
p {
    color: #555;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background-color: #333; /* Dark gray */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
input, textarea, button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input, textarea {
    background-color: #fff;
}
button {
    background-color: #ffcc00; /* Construction yellow */
    color: #333; /* Dark gray text */
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #e6b800; /* Slightly darker yellow */
}
