body {
  background-image: url("/static/img/banner/ledger.6e3e75fdfdce.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--slate);
}

body .container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form Styling */
.form-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: #1E3643;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: #fff;
}

.form-control:focus {
  border-color: #E49A21;
  box-shadow: 0 0 0 0.2rem rgba(228, 154, 33, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: #adb5bd;
  font-style: italic;
}


/* Perched Bird Branding */
.perched-bird {
  position: absolute;
  top: -95px; /* sit above the vault-card content */
  right: -30px; /* align to the card's top-right corner */
  max-width: 120px; 
  max-height: 120px; 
  width: auto;
  height: auto;
  z-index: 10;
  opacity: 0.9;
  pointer-events: none; 
}

@media (max-width: 576px) {
  .perched-bird {
    max-width: 90px; 
    max-height: 90px;
    top: -71px; 
    right: -21px;
  }
}

