body {
  background-color: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

p a{
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form .input-group {
  display: flex;
  flex-direction: column;
}

form .input-group label {
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  resize: vertical;
}