/* style.css */

:root {
  --background-color: #ffffff;
  --text-color: #000000;
}

[data-theme='dark'] {
  --background-color: #000000;
  --text-color: #ffffff;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: sans-serif;
  margin: 20px;
}

/* Form Styles */
#contact-form {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--text-color);
  border-radius: 8px;
  max-width: 500px;
}

#contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

#contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  background-color: var(--background-color);
  color: var(--text-color);
}

#contact-form textarea {
  resize: vertical; /* Allow vertical resizing */
}

#contact-form button[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#contact-form button[type="submit"]:hover {
  background-color: #0056b3;
}