#main_wrapper {
  background: linear-gradient(to bottom right, #0f0f1a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
    background-color: #1f1f3d;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.login-box h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 30px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.login-box input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: #2a2a40;
    color: #fff;
    font-size: 1rem;
}

.login-box input:focus {
    outline: 2px solid #4c4cff;
}

.login-box button {
    width: 100%;
    background-color: #4c4cff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.login-box button:hover {
    background-color: #3a3adc;
}

.register-hint {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #bbb;
}

.register-hint a {
    color: #4c9cff;
    text-decoration: none;
}

.register-hint a:hover {
    text-decoration: underline !important;
}

.forgot-password {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-password a {
  color: #4c9cff;
  font-size: 0.9rem;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline !important;
}



#main_wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.login-box {
  position: relative;
  z-index: 1;  /* VORNE */
}