* {	box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;}

body { display: flex;
	justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;}

.contact-form-container {
   width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {text-align: center;
    margin-bottom: 1em;}

label {display: block;
    margin-bottom: 0.5em;
    font-weight: bold;}

input[type="text"],
input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    height: 100px;
}

button {
    width: 100%;
    padding: 0.75em;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
