/* assets/css/password-form.css */

.sppwp-body
{
    height: 100vh; /* Volle Viewport-Höhe */
    width: 100%;  /* Volle Viewport-Breite */
    background-image: url('https://training-ambilight-tv.de/wp-content/uploads/2025/09/OLED950-65-77-360-72-frames-scaled.webp'); /* Bild-URL angeben */
    background-size: cover; /* Bild deckt den gesamten Bereich ab */
    background-position: center; /* Bild zentrieren */
    background-repeat: no-repeat; /* Bild nicht wiederholen */
    background-attachment: fixed; /* Bild fixiert beim Scrollen (optional) */
    color: white; /* Textfarbe anpassen für Lesbarkeit */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sppwp-password-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sppwp-password-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.sppwp-password-form p {
    margin-bottom: 15px;
    color: #555;
    text-align: center;
}

.sppwp-password-form input[type="password"],
.sppwp-password-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 16px;
}

.sppwp-password-form input[type="password"]:focus,
.sppwp-password-form input[type="submit"]:hover {
    border-color: #0073aa;
    outline: none;
}

.sppwp-password-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sppwp-password-form input[type="submit"]:hover {
    background-color: #005177;
}

.sppwp-password-form .sppwp-password-error {
    color: #ff0000;
    text-align: center;
    margin-top: 10px;
}

.sppwp-remember-me {
    margin: 10px 0;
}

.sppwp-remember-me input[type="checkbox"] {
    margin-right: 5px;
}
