body {
            background-color: black;
            font-family: Arial, sans-serif;
            text-align: center;
            color: white;
        }
        .container {
            
            width: 300px;
            margin: 0 auto;
            padding: 20px;
            background-color: rgb(120, 40, 80);
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .container h2 {
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            text-align: left;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 90%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }
        .form-group .btn {
            width: 100%;
            background-color: blue;
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 3px;
        }
        .logout {
            margin-top: 20px;
        }
        .logout a {
            text-decoration: none;
            color: #ff0000;
            font-weight: bold;
        }
        .logout a:hover {
            text-decoration: underline;
        }
        .menu-item {
            margin-bottom: 10px;
        }
        .menu-item a {
            text-decoration: none;
            color: white;
            font-weight: bold;
        }
        .menu-item a:hover {
            text-decoration: underline;
        }
        .button {
            margin-top: 5px;
            background-color: blue;
            color: #fff;
            border: none;
            padding: 5px;
            cursor: pointer;
            border-radius: 3px;
        }