@font-face {
  font-family: "Aeroport Mono";
  src: url("../CheetA_Assets/Document%20fonts/Aeroport%20Mono.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #5041ff;
  --accent: #ffda32;
}

.cheeta-logo-link {
  display: inline-block;
  position: fixed;
  top: 16px;
  right: 16px;
  margin: 0;
  line-height: 0;
  text-decoration: none;
  z-index: 1000;
}

.cheeta-logo {
  width: 120px;
  max-width: 42vw;
  height: auto;
  display: block;
}

body {
  font-family: "Aeroport Mono", monospace;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 24px 16px;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.login-container {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
}

h2 {
  margin-bottom: 1.5rem;
}

input[type="email"],
input[type="org"] {
  width: 90%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #3f33cc;
}

.secondary-link {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.secondary-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.secondary-link a:hover {
  text-decoration: underline;
}

.helper {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.legal {
  margin: 1rem 0;
  text-align: left;
  font-size: 0.88rem;
  color: #374151;
}

.legal label {
  display: block;
  margin-bottom: 0.55rem;
}

.legal a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.top-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.top-link:hover {
  text-decoration: underline;
}

.feedback {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: left;
}

.feedback.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.feedback.warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.feedback a,
.error a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.feedback a:hover,
.error a:hover {
  text-decoration: underline;
}
