body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-message {
    width: 100%;
    max-width: 500px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 0px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
	font-size: 17px; 
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 0px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
	height: 165px;  
	box-sizing: border-box; /* Includes padding and borders in the element’s width */
}

button {
    width: 20%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

button:hover {
    background-color: #218838;
}

.success-message {
    color: green;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer CSS */
.footer { 	
    background-color: #333;
    color: white;
    padding: 40px 0px;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
	background-color: none; 
	
}

.contact-form {
    width: 80%;
    margin-bottom: 20px;
    text-align: center;
	background-color: none;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.socials {
    margin-top: 40px;
}

.socialWrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
	background-color: none; 
}

.social-icon {
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff4081; /* Example hover color, adjust as needed */
}

/* Style for the copyright text */
.copyright {
    font-size: 16px; /* Font size for the copyright text */
	color: Coral; 
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .socialWrapper a {
        font-size: 20px; /* Adjust icon size on smaller screens */
        margin: 0 8px; /* Adjust spacing between icons */
    }

    .copyright {
        font-size: 12px; /* Adjust font size for smaller screens */
    }
}

.form-total {
    display: flex;
    flex-direction: row; /* Ensures items are in a row on larger screens */
    width: 80%; /* Full width of the parent container */
    margin: 0 auto;
    box-sizing: border-box; /* Ensures padding and borders are included in the element’s total width and height */
}

/* Left section with a deeppink background */
.form-left {
    background-color: none;
    color: white; /* Text color for visibility */
    flex: 1; /* Take up equal width alongside form-right */
    padding: 20px;
    box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

/* Right section with a MediumSlateBlue background */
.form-right {
    background-color: none;
    color: white; /* Text color for visibility */
    flex: 1; /* Take up equal width alongside form-left */
    padding: 20px;
    box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

/* Style for the form elements to ensure they fit within their containers */
.form-left input, .form-left textarea,
.form-right input, .form-right textarea {
    width: 100%; /* Ensures form elements take up full width of their container */
    box-sizing: border-box; /* Includes padding and borders in the element’s width */
    margin-bottom: 10px; /* Space between form elements */
    margin-top: 0px; /* Space between form elements */
}

#subject {
	margin-bottom: 0px; 
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .form-total {
        flex-direction: column; /* Stack elements vertically on small screens */
    }
}


