* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
background: #1f1f1f;
  color: #eee;
  font-family: 'Arial', sans-serif;
}
h1 {
  position: relative;
  width: fit-content;
  margin: 80px auto;
}
p {
  position: relative;
  width: fit-content;
  margin: auto;
}
h1::after {
  content: "";
  position: absolute;
  background: lime;
  z-index: -1;
  bottom: 0;
  right: -10px;
  width: 4px;
  height: 100%;
}
.accent {
  color: lime;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-form label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
