/* Zentrale Stylesheet für Jackie AI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url('/img/bg.jpg'); /* Pfad ggf. anpassen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Zentrierter Container */
.main-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Einheitliche Inputs */
input[type="email"],
input[type="password"],
input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* Buttons */
button {
    background-color: #ddd;
    border: none;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

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

/* Link-Styling */
a {
    color: #ccc;
    text-decoration: underline;
    display: block;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .main-container {
        padding: 20px;
    }
}
