@charset "utf-8";
/* CSS Document */


        
             
        
        .form-group {
            margin-bottom: 1rem;
        }
        
       
        .btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: #667eea;
            color: white;
            margin-bottom: 1rem;
        }
        
        .btn-primary:hover {
            background: #5a6fd8;
            transform: translateY(-1px);
        }
        
        .btn-apple {
            background: #000;
            color: white;
			margin-top: 12px;
        }
        
        .btn-apple:hover {
            background: #333;
            transform: translateY(-1px);
        }
        
        .btn-logout {
            background: #dc3545;
            color: white;
            margin-top: 1rem;
        }
        
        .btn-logout:hover {
            background: #c82333;
        }
        
        .divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            color: #999;
        }
        
        
        
        
        
        
        
        .method-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: 8px;
        }
        
        .method-apple {
            background: #000;
            color: white;
        }
        
        .method-traditional {
            background: #667eea;
            color: white;
        }
        
        .test-credentials {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 1rem;
            font-size: 14px;
            color: #856404;
        }
    