@font-face {
  font-family: "goldeneye";
  src: url(/font/007\ GoldenEye.ttf);
}
body {
  background: #000;
  color: #fff;
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
}
/* Navbar wie Landing Page */
.navbar {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-brand {
  margin: 0;
}
.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background-color: black !important;
  color: white !important;
  border-radius: 0 !important;
}

.form-control {
  background-color: black;
  border-radius: 0;
  color: white;
}

.form-control:focus {
  background-color: black;
  box-shadow: none !important;
  border-color: white !important;
  color: white;
}

/* Login Panel */
.wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}
.panel {
  max-width: 420px;
  width: 100%;
  border: 1px solid #222;
  background: #0b0b0b;
  padding: 2rem;
  border-radius: 12px;
}
.brand {
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.5rem;
}
.form-label {
  color: #bbb;
}
.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-primary:hover {
  background: #ddd;
  border-color: #ddd;
  color: #000;
}
.hint {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* Footer wie Landing Page */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}

/* Handys */
@media (max-width: 480px) {
  .panel {
    margin: 0 20px;
  }
}
