/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2023 | 03:27:50 */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	color: white;
}

#contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contactForm .error-message {
    color: red;
    font-size: 0.9em;
    margin-bottom: 15px;
}

#contactForm button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#contactForm button[type="submit"]:hover {
    background-color: #0056b3;
}

<style>
  form {
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #350D36; 
    color: #fff;
    width: 300px;
    margin: auto;
  }
  input[type="text"], input[type="submit"] {
    width: 30%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  input[type="submit"] {
    background-color: #6a0dad; /* Adjust for contrast */
    color: white;
    border: none;
    cursor: pointer;
  }
  input[type="submit"]:hover {
    background-color: #501A70; /* Darker shade for hover effect */
  }
  label {
    display: block;
    margin-bottom: 5px;
  }
  a {
    color: #aad1e6; /* A light color for contrast */
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
</style>



