     @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&display=swap');

        body {
            overflow: hidden;
            background-color: #f7f7f7;
            margin: 0;
            font-family: 'Quicksand', sans-serif;
            display: flex;
            justify-content: center;
            align-items: inherit;
            height: 100vh;
        }
        
        .seak-access-denied-container {
            text-align: center;
            padding: 50px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
            margin: 20px;
        }

        .seak-access-denied img {
            max-width: 100px;
            margin-bottom: 20px;
        }
        
        .seak-access-denied h1 {
            color: #E99630;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .seak-access-denied p {
            font-size: 16px;
            color: #333;
            margin-bottom: 20px;
        }
        
        .seak-access-denied a {
            color: #1e73be;
            text-decoration: none;
            font-weight: bold;
        }
        
        .seak-access-denied button {
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
            font-family: 'Quicksand', sans-serif;
            background-color: #1d2327;
            color: white;
        }
        
        .seak-access-denied button:hover {
            background-color: #333;
        }

        @media (max-width: 768px) {
            .seak-access-denied-container {
                padding: 20px;
                margin: 10px;
            }
            
            .seak-access-denied h1 {
                font-size: 20px;
            }
            
            .seak-access-denied p {
                font-size: 14px;
            }
            
            .seak-access-denied button {
                font-size: 14px;
                padding: 8px 16px;
            }
        }