/* styles.css */

nav ul{margin: 10px 0 10px 0; width: 135px; float: right;}
nav li {list-style-type: none;}
li.btn{margin-bottom: 3px;text-align: center;width: 130px;}
li.btn a {display: block; color: white; font-weight: bold;text-decoration: none; zoom:1;}
/* mouseout (default) */ 
li.btn a { background:#559a55; color: white; border: 5px outset #559a55;padding-bottom:3px;}
li.btn a:hover { background: red; color:white; border: 5px outset red;}
li.btn a:active { background:maroon; border: 5px inset maroon;}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    display: none; /* Hidden by default */
}

.submit-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #218838;
}
footer { clear:both; color: white; text-align:center;}
