@font-face {
  font-family: 'BSM';
  src: url('../font/bsm-font.ttf') format('truetype');
  font-display: swap;
}  

body {
  background: papayawhip;
  margin: 0;
  color: #000;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

p {
  font-size: 1.08rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

input,
button,
select,
textarea {
  font: inherit;
}

.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.logo text {
  font-family: 'BSM';
  fill: rgb(0, 0, 0);
  stroke: none;
  transition: stroke-width 0.3s ease-out;
}
.logo rect{
    stroke: black;
    transition: stroke-width 0.3s linear; 
}
.logo line {
    stroke: black;
    transition: stroke-width 0.3s linear; 
}
.logo:hover text {
    stroke: rgb(0, 0, 0);
    stroke-width: 2px; /* Acts like font-weight 800+ */
    transition: stroke-width 0.3s linear; /* Violent hit */
}
.logo:hover rect {
    stroke-width: 16px;
}
.logo:hover line {
    stroke-width: 16px;
    transition: stroke-width 0.1s linear; /* violent */
}




.browser-background {
  min-height: 100vh;
}

.width-limiter {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 18px 32px;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.content {
  width: 100%;
}

table {
  width: 100%;
}

.entry-section-intro {
  width: 100%;
}

.entry-form {
  display: grid;
  gap: 14px;
  background: #fdfdfd;
  border: 2px solid #9aa6b2;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 16px;
  margin: 14px 0 22px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.entry-form-row {
  display: grid;
  gap: 6px;
}

.entry-form label {
  font-weight: 700;
}

.entry-form input[type="text"] {
  width: 100%;
  max-width: 100%;
  justify-self: start;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  font-size: 16px;
}

.entry-form-help {
  margin: 0;
}

.captcha-wrap {
  display: grid;
  gap: 10px;
}

.captcha-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.captcha-controls input[type="text"] {
  width: 140px;
}

.entry-form button {
  width: fit-content;
  background: #0b63d1;
  color: #fff;
  border: 1px solid #084ea4;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
}

.entry-form button:hover {
  background: #0955b2;
}

@media (max-width: 800px) {
  .width-limiter {
    padding: 14px;
  }
}

.example-highlight {
  border: 1px solid red;
}


