/* Ubuntu Sans Variable (wie zuvor) */
/* Regular */
@font-face {
  font-family: 'Ubuntu Sans';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/UbuntuSans-VariableFont.ttf') format('truetype-variations');
}

body {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #e8eefc;
  font-family: 'Ubuntu Sans';
  font-size: 1rem;
  font-weight: normal;
}

.card {
  background: #333333;
  border: none;
  border-radius: 16px;
  padding: 28px;
  max-width: 560px;
  width: 92%;
}

img{
  display: flex;
  align-self: center;
  justify-self: center;
  max-height: 80px;
  width: auto;
  margin: 0 0 2rem 0;
}

h1 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
}

.muted {
  color: #cecece;
  margin: 0 0 2.5rem;
  text-align: center;
}

label {
  display: block;
  margin: 1rem 0 .5rem;
}

input {
  width: 100%;
  width: -moz-available;          /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
  padding: 10px 12px;
  border-radius: 10px;
  background: #0c1626;
  border: none;
  color: #e8eefc;
  font-size: inherit !important;
  font-family: inherit !important;
}

button {
  font-family: inherit;
  font-size: inherit;
  padding: 10px 14px;
  border-radius: 12px;
  background: #222222;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

button:hover {
  background: #ffffff;
  color: #222222;
  transition: all ease .5s;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error {
  margin-top: 12px;
  color: #ff6b6b;
}

.hint {
  margin-top: 2rem;
  color: #be7cff;
}

.row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

pre {
  background: #0c1626;
  border: 1px solid #223150;
  color: #cfe1ff;
  border-radius: 12px;
  padding: 14px;
  overflow: auto;
}

.ghost {
  background: transparent;
  border: 1px solid #2e6bff;
  color: #cfe1ff;
}
