        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .guest-container {
            width: 100%;
            max-width: 600px;
            padding: 20px;
        }
        
        .card {
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border: none;
        }

        .card-header img {

            width: 100px;
            height: auto;
            margin-bottom: 20px;
            display: center;
            justify-content: center;
            
        }
        
        .logo-section {
            margin-bottom: 20px;
        }

        .logo-section img {
            width: 100%;
            height: auto;
            margin-top: 10px;
            display: center;
            justify-content: center;
            border-radius: 10px;
        }
        
        .card-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom : -15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .card-header p {
            font-size: 1rem;
            margin: 15px;
            opacity: 0.95;
        }
        
        .card-body {
            padding: 40px;
        }

        .card-body h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: -15px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .card-body p {
            font-size: 1rem;
            font-weight: 400;
            margin: 15px 0;
            text-align: justify;
            text-decoration: none;

        }

        .card-body a {
            font-size: 1rem;
            font-weight: 400;
            margin: 15px 0;
            text-align: justify;
            text-decoration: none;
            color: #000000;
            
        }
        
        .feature-list {
            list-style: none;
            margin: 30px 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            width: 30px;
            color: #667eea;
            margin-right: 10px;
        }
        
        .btn-group-custom {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-custom {
            flex: 1;
            padding: 20px 20px;
            font-size: 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            font-weight: 700;
            margin: 15px;
        }
        
        .btn-login {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .btn-login:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        .btn-register {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }
        
        .btn-register:hover {
            color: white;
            background: #667eea;
            transform: translateY(-2px);
        }
        
        .info-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            border-left: 4px solid #667eea;
        }
        
        .info-box h3 {
            color: #667eea;
            margin-bottom: 10px;
            font-size: 1.5rem;
            text-align: left;
        }
        
        .info-box p {
            margin-bottom: 10px;
            font-size: 1rem;
            text-align: left;
        }
        
        .footer-text p {
            text-align: center;
            color: #666;
            margin-top: 30px;
            margin-bottom: -10px;
            font-size: 0.9rem;
        }

        .footer-text a {
            text-decoration: none;
            color: #666;
        }