body.local-customlogin {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* Direct path because we bypass theme CSS pipeline */
    background: url("/local/customlogin/images/froetBackground.jpeg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}
.local-customlogin .login-container {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 30px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    min-width: 320px;
    max-width: 350px;
    text-align: center;
}
.local-customlogin .login-container h1 {
    margin-bottom: 24px;
    color: #222;
}
.local-customlogin .login-container input[type="text"],
.local-customlogin .login-container input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 16px;
}
.local-customlogin .login-container button {
    width: 100%;
    padding: 12px;
    background: #00526B;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s;
}
.local-customlogin .login-container button:hover {
    background: #003847;
}
/* Notifications */
.local-customlogin .notifications { text-align:left; margin-bottom:18px; }
.local-customlogin .notification { padding:10px 12px; border-radius:6px; font-size:14px; line-height:1.3; margin-bottom:10px; border:1px solid transparent; }
.local-customlogin .notification-error { background:#fdecea; color:#611a15; border-color:#f5c2c0; }
.local-customlogin .notification-warning { background:#fff4e5; color:#663c00; border-color:#ffd599; }
.local-customlogin .notification-info { background:#e8f4fd; color:#0b4f71; border-color:#b6e0fe; }
.local-customlogin .notification-success { background:#edf9ed; color:#1d5e1e; border-color:#b7e2b9; }
.local-customlogin .notification a { color:inherit; text-decoration:underline; }
.local-customlogin .notification:last-child { margin-bottom:0; }

/* Forgot password link */
.local-customlogin .forgot-password { margin-top:14px; font-size:13px; }
.local-customlogin .forgot-password a {
    color: #00526B;
    text-decoration: none;
    font-weight: 600;
}
.local-customlogin .forgot-password a:hover,
.local-customlogin .forgot-password a:focus {
    text-decoration: underline;
    color: #003847;
}
