
body {
  background: linear-gradient(to bottom, #0c0c0c, #ff5e15);
  font-family: 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.styled-login-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 24px;
    padding: 5px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #000;
}
.styled-login-box h2 {
  font-size: 22px;
  color: #f06e1c;
  margin-bottom: 30px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
}

.login-btn {
  background: #f06e1c;
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  font-weight: bold;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.pw-forgot {
  font-size: 13px;
  margin-top: 10px;
  color: #d85e0a;
  cursor: pointer;
}

.alt-actions {
  margin-top: 20px;
}

.alt-btn {
  background: none;
  border: 2px solid #f06e1c;
  color: #f06e1c;
  border-radius: 999px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.alt-btn:hover {
  background: #f06e1c;
  color: white;
}

/* CHAOSKISTE.STUDIO LOGIN DESIGN – HG + BUTTONS */

/* Hintergrundverlauf wie auf der Startseite */
body {
  background: linear-gradient(to bottom, #0c0c0c 0%, #ff5e15 100%);
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}
/* Login Container Optional */
#login_all {
  background: #ffffff10;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Logo */
#login_logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

/* Überschrift und Willkommenstext */
.login_text p:first-child {
  font-size: 24px;
  font-weight: bold;
  color: #f06e1c;
  margin-bottom: 5px;
}

.login_text p:last-child {
  font-size: 15px;
  color: #ccc;
}

/* BUTTON STYLES */
button.btn,
button.primary,
button.secondary {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 10px 0;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
  font-family: 'Rubik', sans-serif;
}

button.primary {
  background-color: #f06e1c;
  color: white;
}

button.primary:hover {
  background-color: #d85e0a;
}

button.secondary {
  background-color: #fff;
  color: #f06e1c;
  border: 2px solid #f06e1c;
}

button.secondary:hover {
  background-color: #f06e1c;
  color: #fff;
}

button i, button span {
  margin-right: 8px;
}

/* Sprache-Icon */
#intro_lang img {
  width: 42px;
  height: 28px;
  margin-top: 20px;
  border-radius: 4px;
}
#intro_top, #login_wrap, html {
  background: transparent !important;
}