/**************************************************
*** Datei: login.css                           ***
*** Zweck: Styling NUR Loginbereich            ***
*** Version: 1.2.0                            ***
*** Autor: Blacky                             ***
**************************************************/

/* NUR der eigentliche Login-Block */
.page-block {
    background: #fff;
    padding: 26px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-left: 4px solid #c40000;
}

/* Formular-Abstände */
.page-block form p {
    margin: 0 0 14px 0;
}

/* Label */
.page-block label {
    font-weight: 600;
    color: #222;
}

/* Input */
.page-block input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.page-block input[type="email"]:focus {
    border-color: #c40000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(196,0,0,0.15);
}

/* Button */
.page-block button {
    background: #c40000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.page-block button:hover {
    background: #a80000;
}

/* Erfolg / Fehler – NUR Login */
.notice {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-left: 4px solid #c40000;
    padding: 14px 16px;
    border-radius: 4px;
}
