
        body {
            background: linear-gradient(135deg, #000, #dcc936);
            background-repeat: no-repeat;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .lockscreen-wrapper {
            max-width: 400px;
            background-color: #ffff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            padding: 2rem;
            text-align: center;
        }
        .lockscreen-logo {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #000;
        }
        .lockscreen-name {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #6c757d;
        }
        .lockscreen-image img {
            max-width: 150px;
            margin-bottom: 1.5rem;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        .form-control {
            border-radius: 20px;
            box-shadow: none;
        }
        .btn-primary {
            background-color: #5b86e5;
            border-color: #5b86e5;
            box-shadow: none;
        }
        .btn-primary:hover {
            background-color: #4675d7;
            border-color: #4675d7;
        }
        .lockscreen-footer a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }
        .lockscreen-footer a:hover {
            color: #5b86e5;
        }
    