/*error-style.css*/

body {
            background-color: #121212;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .logo {
            max-width: 120px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px #00ffc2);
        }

        .title {
            font-size: 2rem;
            color: #00ffc2;
            margin-bottom: 10px;
            text-shadow: 0 0 10px #00ffc2;
        }

        .message {
            margin-bottom: 30px;
            color: #ccc;
        }

        .btn-action {
            width: 260px;
            height: 70px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 12px;
            background-color: #1f2937;
            color: #00ffc2;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-action:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,255,200,0.7);
        }