/*
 * 
 *  PHP Version 8
 * 
 *  Author:               Michael Hamann [KaMi] (info@michaelhamann.org)
 *  ------
 *  Created Date:         Friday January 16th 2026
 *  Last Modified:        Friday January 16th 2026 12:41:05
 *  ------
 *  Copyright:            2024 - 2026
 *  -----------------
 * 
 */

/* =========================================================
   LOGIN – PASSEND ZUM BESTEHENDEN HTML
   Nutzt ausschließlich vorhandene Klassen
   ========================================================= */

/* Head oben etwas kompakter für Login */
.content__head {
  margin-bottom: 1.5rem;
}

.content__title {
  font-size: 1.6rem;
}

.content__subtitle {
  opacity: 0.75;
}

/* Panel Body */
.panel__body {
  padding: 1.5rem;
}

/* Formularstruktur */
.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form__label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Inputs */
.form__input {
  height: 44px;
  padding: 0 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.12));
  background: rgba(0, 0, 0, 0.25);
  color: var(--text, #fff);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.form__input::placeholder {
  opacity: 0.6;
}

.form__input:focus {
  border-color: var(--primary, #6ea8fe);
  box-shadow: 0 0 0 4px rgba(110, 168, 254, 0.18);
}

/* Aktionen */
.form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

/* Alert */
.alert {
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
}

.alert__danger {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
}

.alert__danger ul {
  margin: 0;
  padding-left: 1.1rem;
}

.alert__danger li {
  margin: 0.25rem 0;
}

/* Mobile */
@media (max-width: 600px) {
  .main__content > .panel {
    margin: 0;
  }

  .form__actions {
    justify-content: stretch;
  }

  .form__actions .button {
    width: 100%;
  }
}
