.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.home-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 40px;
    padding: 0 5%;
}

.left-side {
    display: flex;
    flex-direction: column;
}

.user-gallery {
    display: grid;
    grid-template-columns: repeat(6, 128px);
    gap: 20px;
    justify-content: start;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.user-gallery img {
    border-radius: 5px;
    width: 128px;
    height: 128px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
    transition: transform 0.3s ease;
}

.user-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(0,255,255,0.6);
}

.neon-text {
    font-size: 28px;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 15px #0066ff;
    text-align: center;
    margin-bottom: 20px;
}

.topbears-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #0066ff;
    margin: 0 0 30px 40px;
    letter-spacing: 2px;
    z-index: 20;
    position: relative;
}

/* Login Box */
.login-box {
    width: 320px;
    background: rgba(0, 10, 30, 0.9);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 0 16px rgba(0,255,255,0.6);
    color: white;
    margin-top: 90px;
}

/* Registrieren-Button */
.login-box .register-button {
    background: #FFC300;
    color: #002147;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Label oben */
.login-box .login-label {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ccc;
}

/* Inputs */
.login-box input[type="text"],
.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: #e6e6e6;
    color: #444;
}

/* Passwort-Icon */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 13px;
    cursor: pointer;
}

/* Login-Button */
.login-box button.login-submit {
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

/* Passwort vergessen */
.login-box .forgot-link {
    margin-top: 12px;
    text-align: center;
    display: block;
    color: #9ecfff;
    font-size: 14px;
    text-decoration: underline;
}

/* CTA Button oben */
.login-box-top {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #381a5b;
    margin-bottom: 15px;
}

.stats {
    font-size: 16px;
    color: #fff;
}

.cta-button {
    text-align: center;
    margin: 20px 0;
}

.btn-register {
    background-color: #ffc700;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: bold;
    color: #001b2a;
    text-decoration: none;
    display: inline-block;
}

.login-statistics {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.login-statistics strong {
    color: #FFC300;
    font-weight: bold;
}

.register-button {
    background: #FFC300;
    color: #002147;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
    cursor: pointer;
}

.login-label {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ccc;
}

.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: #e6e6e6;
    color: #444;
}

.login-submit {
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

.forgot-link {
    margin-top: 12px;
    text-align: center;
    display: block;
    color: #9ecfff;
    font-size: 14px;
    text-decoration: underline;
}

/* Statistik */
.login-statistics {
    text-align: center;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 15px;
}
.login-statistics strong {
    color: #fdd835;
}

/* Registrieren-Button */
.register-button {
    background: #FFC300;
    color: #002147;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Label */
.login-label {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #ccc;
}

/* Inputs */
.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: #e6e6e6;
    color: #444;
    box-sizing: border-box;
}

/* Passwort Wrapper + Icon */
.password-wrapper .toggle-password {
    position: absolute;
    right: 14px;
    top: 42%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

/* Login Button */
.login-submit {
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

/* Link */
.forgot-link {
    display: block;
    text-align: center;
    color: #9ecfff;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: underline;
}

.login-errors {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
}
.login-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
