/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Gesamt-Container */
.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* Linke Seite – Hintergrund */
.left-side {
    flex: 1; 
    background-image: url("custom/background.jpg");
    background-size: cover;
    background-position: center;
}

/* Rechte Seite – Login Panel */
.right-side {
    width: 380px; /* Breite des Panels */
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Login Box */
.login-box {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-top: -150px;
}

/* Logo */
.logo img {
    width: 350px;
    margin-bottom: -75px;
    margin-left: -25px;
}

/* Eingabefelder */
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    background-color: #E0E0E0; /* dein gewünschtes "dunkel weiß" */
    border-radius: 6px;
    font-size: 15px;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #000;
}

