/* 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;
}

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

/* 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;
}

.btn-primary {
    background-color: #36454F;
    color: white;
}

.btn-primary:hover {
    background-color: #6c757d;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #565e64;
}

.btn-dashboard {
    display: inline-block;
    background-color: #28a745; /* Grün */
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.btn-dashboard:hover {
    background-color: #218838;
    color: white;
}
/* Link-Styling */
a {
    color: #ccc;
    text-decoration: underline;
    display: block;
    margin-top: 10px;
}

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