.content-container {
    width: 60%;
    margin: 10px auto 10px auto;
    text-align: left;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    background-color: var(--bg-color);
    color: var(--text-color);
    caret-color: var(--text-color);
}

.form-group textarea {
    resize: none;
    height: 120px;
    line-height: 1.4;
}

#submit-button {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: var(--bg-button);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#submit-button:hover {
    background-color: var(--bg-button-hover);
}

.form-feedback {
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}

.input-error {
    border-color: red !important;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.input-hint {
    font-size: 12px;
    margin-top: 5px;
}

.h2content {
    margin: 20px auto 10px auto;
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    text-align: center;
}

@media (max-width: 768px) {
.content-container {
    width: 90%;
    padding: revert;
    padding-top: 20px;
    box-shadow: none;
  }

  .h2content {
      font-size: 19px;
  }
}

@media (max-width: 768px) {
  html, body {
      touch-action: manipulation;
      -webkit-text-size-adjust: 100%;
  }

  input, textarea {
      font-size: 16px;
  }
}