body {
  font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  background: #C0C0C0;
  color: #111827;
  line-height: 1.5;
}

.navagation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.8rem 1.25rem;
  border-top: 1px solid #FE7900;;
  background: #000217;
  border-bottom: 1px solid #FE7900;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #000217;
}
.brand-logo {
  /* width: 1000px; */
  height: auto;
  max-width: 500%;
}

.tagline {
    color: #FE7900;
    font-weight: 600;
    font-size: 24px;
    margin-top: -15px;
    padding:  0 0 10px 0;
    background: #000217;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-link {
  color: #dbe3ea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.top-link:hover {
  color: #ffffff;
  background: #243247;
  border-color: #39506b;
}
.top-link:focus-visible {
  outline: none;
  color: #ffffff;
  background: #243247;
  border-color: #1d9bf0;
  box-shadow: 0 0 0 2px rgba(29, 155, 240, 0.35);
}
.top .domain {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8b98a6;
  font-size: 0.9rem;
}
.box {
  max-width: 42rem;
  margin: 2rem auto;
  padding: 0 1rem;
}
.box.narrow { max-width: 22rem; }
.box h1 { font-size: 1.5rem; margin-top: 0; }
label { 
    display: block; 
    margin: 1rem 0 0.35rem; 
    font-size: 0.875rem; 
    color: #000317; 
    font-weight: 700;
}
input[type="email"],
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid #2f4055;
  border-radius: 6px;
  background: #0f1419;
  color: #e7e9ea;
  box-sizing: border-box;
}
button, .btn {
  display: inline-block;
  /* margin-top: 1.25rem; */
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 6px;
  background: #1d9bf0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn-alt { background: #38444d; margin-left: 0.35rem; }
.error { color: #f97373; margin: 0 0 1rem; font-size: 0.925rem; }
.muted { 
    color: #000317; 
    font-size: 0.9rem;
    padding: 0 0 0 40px; 
    font-weight: 700; 
}
.muted a { 
    color: #000317;
    padding: 0 0 0 40px;
    font-weight: 700; 
}

.btn:hover {
  color: #ffffff;
  background: #243247;
  border-color: #39506b;
}
