/*
Theme Name: kivax OneSite
Theme URI: https://kivax.de/themes/onesite
Author: Ludwig Stübl
Author URI: https://kivax.de
Description: Ein modernes Login-Theme mit Hintergrundbild und Glaseffekt.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, full-screen
Text Domain: mein-login-theme
*/

/* --- CSS-Regeln für das Layout --- */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.login-container {
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-width: 90%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.login-title {
    color: white;
    font-weight: 300;
    margin-bottom: 20px;
}

.login-container .input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.login-container .input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.3);
}

.login-container label {
    display: block;
    text-align: left;
    color: white;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.login-submit .button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.login-submit .button:hover {
    background: linear-gradient(45deg, #0056b3, #003d80);
    transform: translateY(-2px);
}

.login-container .input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}