@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

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

body {
  font-family: 'Lato', sans-serif;
  background: #f5f2ee;
  color: #2c2c2c;
  line-height: 1.75;
  padding: 2rem 1rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.document {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1.5rem 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  margin-top: 1rem;
}

#background,
#background H3
{
  color: #555;
}

#request {
  color: #000;
}

.document h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  border-bottom: 2px solid #c8a96e;
  padding-bottom: 0.5rem;
}

.document h3 {
  font-size: 1.15rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.document p {
  margin-bottom: 1rem;
}

.document hr {
  border: none;
  border-top: 1px solid #e0d9d0;
  margin: 2rem 0;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

 s.static-value {
  display: block;
  color: #555;
}

.field input[type="text"] {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.45rem 0.65rem;
  width: 16rem;
}

.field input[type="text"]:focus {
  outline: none;
  border-color: #2c5f8a;
  box-shadow: 0 0 0 2px rgba(44, 95, 138, 0.2);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-label {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.inline-input {
  width: 10rem !important;
  display: inline-block;
}

#signers h3 {
  margin-bottom: 1rem;
}

.signer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.signer-list li {
  display: flex;
  gap: 1.5rem;
}

.signer-time {
  color: #888;
  min-width: 6rem;
  flex-shrink: 0;
}

.signer-name {
  color: #222;
}

footer {
  text-align: center;
  margin-top: 2rem;
}

.sign-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #2c5f8a;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
}

.sign-btn:hover {
  background: #1e4466;
}

@media (max-width: 600px) {
  .document {
    padding: 1.5rem 1.25rem;
  }
}