.c-table {
  width: 100%;
}

.c-table thead {
  background-color: rgb(249 250 251);
  border: 1px solid rgb(209 213 219);
}
.c-table tbody {
  background-color: white;
  border-left: 1px solid rgb(209 213 219);
  border-right: 1px solid rgb(209 213 219);
}

.c-table > * + * {
  border-top: 1px solid rgb(209 213 219);
  border-bottom: 1px solid rgb(209 213 219);
}

.c-table tbody > tr + tr {
  border-top: 1px solid rgb(209 213 219);
  border-bottom: 1px solid rgb(209 213 219);
}

.c-table th {
  padding: 12px;
  text-align: left;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #111827;
  vertical-align: top;
}

.c-table tr:hover {
  background-color: rgb(243 244 246);
}

.c-table td {
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  vertical-align: top;
}

.c-table .c-number {
  text-align: right;
}

.c-table a {
  text-decoration: underline;
}

.c-table a:hover {
  text-decoration: none;
}

.c-link {
  text-decoration: underline;
  cursor: pointer;
}

.c-link:hover {
  text-decoration: none;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 20rem;
  max-width: 50rem;
}

.c-form input[type='email'],
.c-form input[type='text'],
.c-form input[type='file'],
.c-form select,
.c-form textarea {
  display: block;
  margin-top: 4px;
  padding: 8px;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: rgb(210 214 220);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.c-form select {
  appearance: none;
}

.c-form textarea {
  min-height: 200px;
}

.c-form .field_with_errors label {
  color: red;
}

.c-form .field_with_errors input[type='email'],
.c-form .field_with_errors input[type='text'],
.c-form .field_with_errors input[type='file'],
.c-form .field_with_errors select,
.c-form .field_with_errors textarea {
  border-color: red;
}

.c-form-errors {
  color: red;
  font-weight: bold;
  border: 1px solid red;
  padding: 1rem;
  border-radius: 20px;
}

.c-form-errors strong {
  font-size: 1.125rem;
  line-height: 1.75rem;
  display: block;
  margin-bottom: 8px;
}

.c-form input[type='submit'],
.c-button {
  border-radius: 16px;
  background-color: #ffffff;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: black;
  border-color: 1px solid #d1d5db;
  box-shadow: 0 0 0 1px #d1d5db;
  transition: background-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none !important;
}

.c-form input[type='submit']:hover,
.c-button:hover {
  background-color: rgb(229 231 235);
}

.c-form input[type='submit'] {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
