/**
 * ------------------------------------------------------------------------------
 * © ISC it & software consultants GmbH  (All rights reserved.)
 * DO NOT MODIFY THIS FILE !
 * ------------------------------------------------------------------------------
 * Author        : Manuel Moschkau
 * Create Date   : 2025-08-21
 * Change Date   : 2025-09-30
 * Main Program  : ISC-KI
 * Description   : Stylesheet für Login-Seite (Layout, Formular, Alerts, Buttons)
 * ------------------------------------------------------------------------------
 * Change Log    :
 * Date        Name    Description
 * ------------------------------------------------------------------------------
 * 2025-08-21  MM      Initial version
 * 2025-09-30  MM      Added form focus styles, buttons, and alert styling
 * ------------------------------------------------------------------------------
 * ISC GmbH, MM, 2025-09-30 : Datei : public\assets\css\login.css
 */

body {
    background-color: #0b0f1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #1a1f2e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    width: 400px;
}

h1 {
    color: #00ffe7;
    text-align: center;
    margin-bottom: 1.5rem;
}

label {
    font-size: 0.9rem;
    color: #aaa;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0 1rem 0;
    background-color: #2a2f42;
    border: none;
    color: #e0e0e0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid #00ffe7;
    box-shadow: 0 0 5px rgba(0, 255, 231, 0.5);
}

button {
    width: 100%;
    padding: 0.7rem;
    background-color: #00ffe7;
    color: #0b0f1a;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #00cfc1;
    transform: scale(1.02);
}

button:active {
    transform: scale(0.98);
}

.alert {
    background-color: #ff2e2e;
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-success {
    background-color: #28a745;
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
}
.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.remember-me input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
