/* Eilyssa Contact Form - Clean Slate */

.container {
  width: 100% !important;
  max-width: 600px !important;
  margin-left: 0 !important;  /* Forces it to the left edge */
  margin-right: auto !important;
  padding-left: 10px;        /* A small buffer so it's not touching the screen edge */
  display: block !important; /* Ensures it's not behaving like a flex-item */
}

/* Ensure individual input fields don't overflow */
input[type="text"],
input[type="email"],
textarea {
  width: 100% !important;
  box-sizing: border-box; /* Includes padding in the width calculation */
}

.styled-form {
  display: block;
  width: 100%;
}

.input-group {
  margin-bottom: 25px;
  width: 100%;
}

.input-group label {
  display: block;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
  width: 100% !important; /* Force width */
  display: block;
  box-sizing: border-box;
  padding: 15px;
  background-color: #f6f1ee; /* Cream background */
  color: #2c1e14;            /* Dark brown text */
  border: 1px solid #d4af37;
  font-family: inherit;
  font-size: 16px;
}

textarea {
  min-height: 150px;
}

.submit-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 15px 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  font-weight: bold;
  display: block;
}

.submit-btn:hover {
  background: #b9a576;
  color: #000;
}
