@charset "utf-8";
/* CSS Document */
body {
  background: #f6f7fb;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  margin: 0;
}

header {
  background: #fff;
  border-bottom: 1px solid #d9e1ec;
  padding: 20px 0 10px 0;
}

header img {
  max-height: 50px;
}

main {
  width: fit-content;
  margin: 30px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 16px rgba(42,60,90,.09);
  padding: 30px 28px;
}

h2, h3, h4 {
  color: #1752b7;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  background: #f9fafe;
  font-size: 0.8em;
}

th, td {
  border: 1px solid #e2e7f1;
  padding: 8px 12px;
  text-align: left;
}

th {
  background: #e9eef6;
  font-weight: 600;
  color: #123b6d;
}

tr:nth-child(even) {
  background: #f3f5f9;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
  border: 1px solid #c9d2e3;
  border-radius: 5px;
  padding: 7px 12px;
  margin-bottom: 6px;
  width: 98%;
  font-size: 1em;
  background: #fcfcfe;
  box-sizing: border-box;
}

button, input[type="submit"] {
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 20px;
  font-weight: bold;
  font-size: 1em;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover, input[type="submit"]:hover {
  background: #1454ad;
}

label {
  display: block;
  margin: 0 0 2px 2px;
  color: #1a73e8;
}

a {
  color: #1454ad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 750px) {
  main {
    max-width: 97vw;
    padding: 10vw 2vw;
  }
  table, th, td {
    font-size: 0.95em;
    padding: 6px 4px;
  }
}

