.scr-register-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  background: #f8f8f8;
  border: 1px solid #e1e1e1;
}

.scr-register-intro h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.2;
  color: #173f7a;
}

.scr-register-intro p {
  margin-bottom: 24px;
}

.scr-register-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.scr-field-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.scr-field-group input {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid #222;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}

.scr-register-actions {
  margin-top: 18px;
}

.scr-search-button {
  min-width: 180px;
  min-height: 52px;
  padding: 12px 24px;
  background: #d4144f;
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.scr-search-button:hover,
.scr-search-button:focus {
  opacity: 0.92;
}

.scr-register-message {
  margin-top: 16px;
  padding: 0;
}

.scr-register-message.info {
  color: #174a8b;
}

.scr-register-message.error {
  color: #b42318;
}

.scr-register-results {
  margin-top: 18px;
}

.scr-results-table-wrap {
  overflow-x: auto;
}

.scr-results-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.scr-results-table th,
.scr-results-table td {
  padding: 12px 14px;
  border: 1px solid #ddd;
  text-align: left;
}

.scr-results-table th {
  background: #173f7a;
  color: #fff;
}

@media (max-width: 640px) {
  .scr-register-wrapper {
    padding: 16px;
  }

  .scr-register-intro h2 {
    font-size: 1.6rem;
  }

  .scr-search-button {
    width: 100%;
  }
}
