:root{
  --pichlmayr-gruen: #5f9232;
    --pichlmayr-gruen-dark: #4b7428; /* darker hover */
  --pichlmayr-orange: #faa61a;
}

/* Full height */
html, body{
  height: 100%;
  margin: 0;
}

/* Green bar on top */
body::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--pichlmayr-gruen);
  z-index: 9999;
}

/* Dynamic orange background */
body{
  font-family: "Red Hat Text", sans-serif;

  /* animated gradient */
  background: linear-gradient(
    120deg,
    #faa61a,
    #ffb84a,
    #ff9f1a,
    #ffd07a
  );
  background-size: 300% 300%;
  animation: orangeFlow 12s ease-in-out infinite;

  /* center container */
  display: flex;
  justify-content: center;
  align-items: center;

  /* optional: prevent scrollbars */
  min-height: 100vh;
}

/* Animation */
@keyframes orangeFlow{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Your main login container */
.container {
  width: 100%;
  max-width: 560px;
  background: white;
  border-radius: 15px;
  padding: 40px 40px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.login-logo{
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.login-logo img{
  max-width: 260px;   /* normal size */
  height: auto;

  transition: transform 0.35s ease, filter 0.35s ease;
  transform: scale(1);
  filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.18));
}

/* Hover = bigger + more shadow */
.login-logo img:hover{
  transform: scale(1.12);
  filter: drop-shadow(0px 12px 22px rgba(0,0,0,0.28));
}


/* Headline */
.container h1 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
}

/* Your "well" */
.well {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Input fields spacing */
.form-group {
  margin-bottom: 18px;
}

/* Alerts look cleaner */
.alert {
  margin-top: 20px;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
}

/* Button full width and nicer */
.btn.btn-primary {
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  padding: 12px;
}


/* Your login button */
#absenden.btn.btn-primary{
  background: var(--pichlmayr-gruen) !important;
  border-color: var(--pichlmayr-gruen) !important;
  color: #fff !important;

  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

/* Hover */
#absenden.btn.btn-primary:hover{
  background: var(--pichlmayr-gruen-dark) !important;
  border-color: var(--pichlmayr-gruen-dark) !important;
}

/* Click effect */
#absenden.btn.btn-primary:active{
  transform: scale(0.98);
}
